mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-08 23:19:04 +01:00
Correct spelling of function name. More to come...
This commit is contained in:
parent
b978be2eec
commit
e14cc06c49
@ -79,7 +79,7 @@
|
||||
</member>
|
||||
<member>
|
||||
<name>faultString</name>
|
||||
<value><string>' . xmlrpc_encode_entitites($this->errstr) . '</string></value>
|
||||
<value><string>' . xmlrpc_encode_entities($this->errstr) . '</string></value>
|
||||
</member>
|
||||
</struct>
|
||||
</value>
|
||||
|
@ -209,7 +209,7 @@
|
||||
case xmlrpcString:
|
||||
// G. Giunta 2005/2/13: do NOT use htmlentities, since
|
||||
// it will produce named html entities, which are invalid xml
|
||||
$rs.="<${typ}>" . xmlrpc_encode_entitites($val). "</${typ}>";
|
||||
$rs.="<${typ}>" . xmlrpc_encode_entities($val). "</${typ}>";
|
||||
// $rs.="<${typ}>" . htmlentities($val). "</${typ}>";
|
||||
break;
|
||||
default:
|
||||
|
@ -192,7 +192,7 @@
|
||||
* are independent of the charset encoding used to transmit them, and all XML
|
||||
* parsers are bound to understand them.
|
||||
*/
|
||||
function xmlrpc_encode_entitites($data)
|
||||
function xmlrpc_encode_entities($data)
|
||||
{
|
||||
$length = strlen($data);
|
||||
$escapeddata = "";
|
||||
|
Loading…
Reference in New Issue
Block a user