summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www-apps/egroupware/files/egroupware-1.0.0.007-xmlrpc.patch')
-rw-r--r--www-apps/egroupware/files/egroupware-1.0.0.007-xmlrpc.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/www-apps/egroupware/files/egroupware-1.0.0.007-xmlrpc.patch b/www-apps/egroupware/files/egroupware-1.0.0.007-xmlrpc.patch
new file mode 100644
index 000000000000..a9b420d04ce5
--- /dev/null
+++ b/www-apps/egroupware/files/egroupware-1.0.0.007-xmlrpc.patch
@@ -0,0 +1,29 @@
+--- egroupware/phpgwapi/inc/xml_functions.inc.php.old 2005-07-04 22:35:39.000000000 +0200
++++ egroupware/phpgwapi/inc/xml_functions.inc.php 2004-03-07 10:55:43.000000000 +0100
+@@ -189,7 +189,7 @@
+ $GLOBALS['_xh'][$parser]['qt']=0;
+ break;
+ case 'NAME':
+- $GLOBALS['_xh'][$parser]['st'] .= "'";
++ $GLOBALS['_xh'][$parser]['st'] .= '"';
+ $GLOBALS['_xh'][$parser]['ac'] = '';
+ break;
+ case 'FAULT':
+@@ -265,7 +265,7 @@
+ $GLOBALS['_xh'][$parser]['cm']--;
+ break;
+ case 'NAME':
+- $GLOBALS['_xh'][$parser]['st'].= $GLOBALS['_xh'][$parser]['ac'] . "' => ";
++ $GLOBALS['_xh'][$parser]['st'].= $GLOBALS['_xh'][$parser]['ac'] . '" => ';
+ break;
+ case 'BOOLEAN':
+ // special case here: we translate boolean 1 or 0 into PHP
+@@ -293,7 +293,7 @@
+ }
+ elseif ($GLOBALS['_xh'][$parser]['qt']==2)
+ {
+- $GLOBALS['_xh'][$parser]['st'].='base64_decode("'. $GLOBALS['_xh'][$parser]['ac'] . '")';
++ $GLOBALS['_xh'][$parser]['st'].="base64_decode('". $GLOBALS['_xh'][$parser]['ac'] . "')";
+ }
+ elseif ($name=='BOOLEAN')
+ {