Author: keith Date: Wed Aug 6 22:01:06 2008 New Revision: 20508 URL: http://wso2.org/svn/browse/wso2?view=rev&revision=20508
Log: Fixing Mashup-1076 Modified: trunk/mashup/java/modules/core/src/org/wso2/mashup/utils/MashupUtils.java Modified: trunk/mashup/java/modules/core/src/org/wso2/mashup/utils/MashupUtils.java URL: http://wso2.org/svn/browse/wso2/trunk/mashup/java/modules/core/src/org/wso2/mashup/utils/MashupUtils.java?rev=20508&r1=20507&r2=20508&view=diff ============================================================================== --- trunk/mashup/java/modules/core/src/org/wso2/mashup/utils/MashupUtils.java (original) +++ trunk/mashup/java/modules/core/src/org/wso2/mashup/utils/MashupUtils.java Wed Aug 6 22:01:06 2008 @@ -1442,7 +1442,7 @@ return cleanHtml; } - public static OMNode getSanizedHTMLAsOMNode(String htmlContent) throws XMLStreamException { + public static OMElement getSanizedHTMLAsOMNode(String htmlContent) throws XMLStreamException { String cleanedHTML = sanitizeHtml(htmlContent); StAXOMBuilder builder = new StAXOMBuilder(new ByteArrayInputStream(cleanedHTML.getBytes())); return builder.getDocumentElement(); _______________________________________________ Mashup-dev mailing list [email protected] http://mailman.wso2.org/cgi-bin/mailman/listinfo/mashup-dev
