[Geoserver-devel] [jira] Created: (GEOS-711) WebLogic 8.1 doesn't show the administration console

WebLogic 8.1 doesn't show the administration console
----------------------------------------------------

                 Key: GEOS-711
                 URL: http://jira.codehaus.org/browse/GEOS-711
             Project: GeoServer
          Issue Type: Bug
    Affects Versions: 1.3.3
            Reporter: Luca Morandini
         Assigned To: dblasby
            Priority: Minor
             Fix For: 1.3.x

In both menuator.jsp and actionator.jsp, there is a code fragment that causes WebLogic to signal an error and refuse to show the administration console:
<html:link style="item"
                        forward="<%= forward %>"
                        titleKey="<%= forward+".short" %>">
               <bean:message key="<%= forward+".label" %>"/>
</html:link>

The issue seems to lie with the double-quote nesting, which can be solved using single-quotes. like in:
<html:link style='item'
                      forward='<%= forward %>'
                      titleKey='<%= forward+".short" %>'>
             <bean:message key='<%= forward+".label" %>'/>
</html:link>

--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira