- when a module passes string data to the server in a XML document, presence of special XML characters like '&' and '<' si not checked. A temporal workaround is implemented in this revision, consisting on encapsulating the module data within <![CDATA[ ]]> http://www.w3schools.com/xml/xml_cdata.asp
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@107 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
067b715238
commit
71219a9040
|
@ -130,7 +130,7 @@ do
|
|||
then
|
||||
res=`eval expr $res 2> /dev/null`
|
||||
fi
|
||||
echo "<data>$res</data>" >> $DATA2
|
||||
echo "<data><![CDATA[$res]]></data>" >> $DATA2
|
||||
fi
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in New Issue