You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2013/12/21 00:41:33 UTC

svn commit: r1552844 - /myfaces/core/branches/2.1.x/impl/src/main/java/org/apache/myfaces/view/facelets/tag/ui/UIDebug.java

Author: lu4242
Date: Fri Dec 20 23:41:33 2013
New Revision: 1552844

URL: http://svn.apache.org/r1552844
Log:
MYFACES-3837 ui:debug renders an & but it should be & because the markup is inside a CDATA section

Modified:
    myfaces/core/branches/2.1.x/impl/src/main/java/org/apache/myfaces/view/facelets/tag/ui/UIDebug.java

Modified: myfaces/core/branches/2.1.x/impl/src/main/java/org/apache/myfaces/view/facelets/tag/ui/UIDebug.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2.1.x/impl/src/main/java/org/apache/myfaces/view/facelets/tag/ui/UIDebug.java?rev=1552844&r1=1552843&r2=1552844&view=diff
==============================================================================
--- myfaces/core/branches/2.1.x/impl/src/main/java/org/apache/myfaces/view/facelets/tag/ui/UIDebug.java (original)
+++ myfaces/core/branches/2.1.x/impl/src/main/java/org/apache/myfaces/view/facelets/tag/ui/UIDebug.java Fri Dec 20 23:41:33 2013
@@ -118,7 +118,7 @@ public final class UIDebug extends UICom
         int index = actionId.indexOf ("?");
         if (index != -1)
         {
-            sb.append("&");
+            sb.append('&');
         }
         else
         {