Update of /var/cvs/html/mmbase/components/core
In directory james.mmbase.org:/tmp/cvs-serv9065

Modified Files:
        functions-sets.jspx 
Log Message:
escaping didn't happen properly if e.g. value contained $


See also: http://cvs.mmbase.org/viewcvs/html/mmbase/components/core


Index: functions-sets.jspx
===================================================================
RCS file: /var/cvs/html/mmbase/components/core/functions-sets.jspx,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- functions-sets.jspx 8 Jan 2009 00:15:17 -0000       1.2
+++ functions-sets.jspx 12 Jan 2009 21:35:18 -0000      1.3
@@ -24,12 +24,14 @@
 
     <c:forEach items="${functionsets}" var="entry">
       <li>
-        <p>${entry.key}: <mm:write value="${entry.value.description}" /></p>
+        <p>${entry.key}: <mm:escape 
escape="p">${entry.value.description}</mm:escape></p>
         <ul>
           <c:forEach items="${entry.value.functions}" var="fun">
             <li>
               <mm:escape>${fun}</mm:escape>
-            <p><mm:write value="${fun.description}" /></p>
+              <p>
+                <mm:escape escape="p">${fun.description}</mm:escape>
+              </p>
             </li>
           </c:forEach>
         </ul>
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to