Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.8
-
None
-
MS Windows / Apache tomcat
Description
Current tomcat version does not allow nested double quoted assignments like in next case prefix in Install.jsp
This syntax is no longer allowed:
prefix="<%= rb.getString( "install.jsp.install.info" )%>"/>
I had to change it to single quotes to get the application running. Current Tomcat release throws exception on this old syntax.
Use next single quoted instead:
prefix='<%= rb.getString( "install.jsp.install.info" )%>'/>