svn commit: r742016 - /ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/HtmlWidget.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r742016 - /ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/HtmlWidget.java

jonesde
Author: jonesde
Date: Sun Feb  8 08:18:37 2009
New Revision: 742016

URL: http://svn.apache.org/viewvc?rev=742016&view=rev
Log:
Commented out lines that cause the general html encoding, need to track down problem with app bar in manager apps

Modified:
    ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/HtmlWidget.java

Modified: ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/HtmlWidget.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/HtmlWidget.java?rev=742016&r1=742015&r2=742016&view=diff
==============================================================================
--- ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/HtmlWidget.java (original)
+++ ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/HtmlWidget.java Sun Feb  8 08:18:37 2009
@@ -68,9 +68,9 @@
             }*/
             // This StringHtmlWrapperForFtl option seems to be the best option
             // and handles most things without causing too many problems
-            if (object instanceof String) {
-                return new StringHtmlWrapperForFtl((String) object, this);
-            }
+            //if (object instanceof String) {
+            //    return new StringHtmlWrapperForFtl((String) object, this);
+            //}
             return super.wrap(object);
         }
     }