You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by wo...@apache.org on 2007/12/04 11:59:19 UTC

svn commit: r600873 - /portals/jetspeed-2/branches/JETSPEED-2.1.3/applications/j2-admin/src/webapp/WEB-INF/view/palm.jsp

Author: woonsan
Date: Tue Dec  4 02:59:17 2007
New Revision: 600873

URL: http://svn.apache.org/viewvc?rev=600873&view=rev
Log:
Fixed the problem on WebSphere 6.1 about parsing JSP tags. (This problem was reported by Michael Timony.)
On WebSphere 6.1, JSP tag attributes should be properly escaped. 
For example, having an attribute value with double quote is not acceptable on WebSphere 6.1 if it is double quoted and its value is not properly escaped.

Modified:
    portals/jetspeed-2/branches/JETSPEED-2.1.3/applications/j2-admin/src/webapp/WEB-INF/view/palm.jsp

Modified: portals/jetspeed-2/branches/JETSPEED-2.1.3/applications/j2-admin/src/webapp/WEB-INF/view/palm.jsp
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/branches/JETSPEED-2.1.3/applications/j2-admin/src/webapp/WEB-INF/view/palm.jsp?rev=600873&r1=600872&r2=600873&view=diff
==============================================================================
--- portals/jetspeed-2/branches/JETSPEED-2.1.3/applications/j2-admin/src/webapp/WEB-INF/view/palm.jsp (original)
+++ portals/jetspeed-2/branches/JETSPEED-2.1.3/applications/j2-admin/src/webapp/WEB-INF/view/palm.jsp Tue Dec  4 02:59:17 2007
@@ -61,7 +61,7 @@
     <th class="portlet-section-subheader">Running</th>
     <th class="portlet-section-subheader">Commands</th>
   </tr>
-<c_rt:set var="list" value="<%=renderRequest.getPortletSession().getAttribute("list")%>"/>
+<c_rt:set var='list' value='<%=renderRequest.getPortletSession().getAttribute("list")%>'/>
 <c:forEach var="pa" items="${list}" varStatus="status">
   <c:choose>
     <c:when test="${status.count % 2 != 0}">



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-dev-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-dev-help@portals.apache.org