Author: hansbak
Date: Tue Oct 12 10:23:11 2010
New Revision: 1021729
URL:
http://svn.apache.org/viewvc?rev=1021729&view=revLog:
allow safe html in blog services
Modified:
ofbiz/trunk/applications/content/servicedef/services.xml
Modified: ofbiz/trunk/applications/content/servicedef/services.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/servicedef/services.xml?rev=1021729&r1=1021728&r2=1021729&view=diff==============================================================================
--- ofbiz/trunk/applications/content/servicedef/services.xml (original)
+++ ofbiz/trunk/applications/content/servicedef/services.xml Tue Oct 12 10:23:11 2010
@@ -1070,8 +1070,8 @@
<attribute name="statusId" type="String" mode="IN" optional="true"/>
<attribute name="description" type="String" mode="IN" optional="true"/>
<attribute name="templateDataResourceId" type="String" mode="IN" optional="true"/>
- <attribute name="articleData" type="String" mode="IN" optional="true"/>
- <attribute name="summaryData" type="String" mode="IN" optional="true"/>
+ <attribute name="articleData" type="String" mode="IN" optional="true" allow-html="safe"/>
+ <attribute name="summaryData" type="String" mode="IN" optional="true" allow-html="safe"/>
</service>
<service name="updateBlogEntry" engine="simple" auth="true"
location="component://content/script/org/ofbiz/content/blog/BlogServices.xml" invoke="updateBlogEntry">
@@ -1083,8 +1083,8 @@
<attribute name="statusId" type="String" mode="IN" optional="true"/>
<attribute name="description" type="String" mode="IN" optional="true"/>
<attribute name="templateDataResourceId" type="String" mode="IN" optional="true"/>
- <attribute name="articleData" type="String" mode="IN" optional="true"/>
- <attribute name="summaryData" type="String" mode="IN" optional="true"/>
+ <attribute name="articleData" type="String" mode="IN" optional="true" allow-html="safe"/>
+ <attribute name="summaryData" type="String" mode="IN" optional="true" allow-html="safe"/>
</service>
<service name="getBlogEntry" engine="simple" auth="true"
location="component://content/script/org/ofbiz/content/blog/BlogServices.xml" invoke="getBlogEntry">