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:54 UTC

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

Author: lu4242
Date: Fri Dec 20 23:41:53 2013
New Revision: 1552845

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

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

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