git-svn-id: http://xe-core.googlecode.com/svn/trunk@1114 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-04-12 08:28:04 +00:00
parent 1ea27b0635
commit a35fd84e0e
7 changed files with 380 additions and 313 deletions

View file

@ -96,7 +96,7 @@
function _toXmlDoc(&$oModule) {
$xmlDoc = "<response>\n";
$xmlDoc .= sprintf("<error>%s</error>\n",$oModule->getError());
$xmlDoc .= sprintf("<message>%s</message>\n",$oModule->getMessage());
$xmlDoc .= sprintf("<message>%s</message>\n",str_replace(array('<','>','&'),array('&lt;','&gt;','&amp;'),$oModule->getMessage()));
$variables = $oModule->getVariables();