blob: c51cbfd38f334709a8ce1fe55585dc10bf4a2f2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
--- phpwiki-1.3.10/lib/XMLRPC/xmlrpc.inc.old 2005-07-04 22:42:16.000000000 +0200
+++ phpwiki-1.3.10/lib/XMLRPC/xmlrpc.inc 2005-07-04 22:42:18.000000000 +0200
@@ -197,7 +197,7 @@
$_xh[$parser]['qt']=0;
break;
case 'NAME':
- $_xh[$parser]['st'].="'"; $_xh[$parser]['ac']='';
+ $_xh[$parser]['st'].='"'; $_xh[$parser]['ac']='';
break;
case 'FAULT':
$_xh[$parser]['isf']=1;
@@ -274,7 +274,7 @@
$_xh[$parser]['cm']--;
break;
case 'NAME':
- $_xh[$parser]['st'].= $_xh[$parser]['ac'] . "' => ";
+ $_xh[$parser]['st'].= $_xh[$parser]['ac'] . '" => ';
break;
case 'BOOLEAN':
// special case here: we translate boolean 1 or 0 into PHP
@@ -302,7 +302,7 @@
}
elseif ($_xh[$parser]['qt']==2)
{
- $_xh[$parser]['st'].="base64_decode('". $_xh[$parser]['ac'] . "')";
+ $_xh[$parser]['st'].='base64_decode("'. $_xh[$parser]['ac'] . '")';
}
elseif ($name=='BOOLEAN')
{
|