From fed41cf05ebddaf5ea02e354832ab42ef8d94b91 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sat, 18 Jul 2009 12:46:05 +0000 Subject: [PATCH] "Fix for bug #2111: xml_functions.inc.php calls to an undefined method as suggested by Igor Blanco" --- phpgwapi/inc/xml_functions.inc.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/phpgwapi/inc/xml_functions.inc.php b/phpgwapi/inc/xml_functions.inc.php index b400043074..5749635460 100644 --- a/phpgwapi/inc/xml_functions.inc.php +++ b/phpgwapi/inc/xml_functions.inc.php @@ -191,12 +191,12 @@ * into their equivalent 'charset entity'. Charset entities enumerated this way * are independent of the charset encoding used to transmit them, and all XML * parsers are bound to understand them. - * + * * @author Eugene Pivnev */ function xmlrpc_encode_entities($data) { - return htmlspecialchars($data,ENT_QUOTES,$GLOBALS['egw']->translation->system_charset ? + return htmlspecialchars($data,ENT_QUOTES,$GLOBALS['egw']->translation->system_charset ? $GLOBALS['egw']->translation->system_charset : 'latin1'); } @@ -789,7 +789,7 @@ if($server_name) { - list($sessionid,$kp3) = $GLOBALS['egw']->session->create_server($username.'@'.$server_name,$password,"text"); + list($sessionid,$kp3) = $GLOBALS['egw']->session->create($username.'@'.$server_name,$password,"text"); } else {