Search
j0ke.net Open Build Service
>
Projects
>
home:netmax
:
rebuilds
>
php4
> php-4.3.9-CAN-2005-1921.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File php-4.3.9-CAN-2005-1921.patch of Package php4
--- XML_RPC-1.1.0/RPC.php.orig +++ XML_RPC-1.1.0/RPC.php @@ -158,7 +158,7 @@ break; case "NAME": - $XML_RPC_xh[$parser]['st'] .= "'"; + $XML_RPC_xh[$parser]['st'] .= '"'; $XML_RPC_xh[$parser]['ac'] = ""; break; @@ -238,7 +238,7 @@ break; case "NAME": - $XML_RPC_xh[$parser]['st'] .= $XML_RPC_xh[$parser]['ac'] . "' => "; + $XML_RPC_xh[$parser]['st'] .= $XML_RPC_xh[$parser]['ac'] . '" => '; break; case "BOOLEAN": @@ -263,7 +263,7 @@ // we use double quotes rather than single so backslashification works OK $XML_RPC_xh[$parser]['st'] .= "\"" . $XML_RPC_xh[$parser]['ac'] . "\""; } elseif ($XML_RPC_xh[$parser]['qt'] == 2) { - $XML_RPC_xh[$parser]['st'] .= "base64_decode('" . $XML_RPC_xh[$parser]['ac'] . "')"; + $XML_RPC_xh[$parser]['st'] .= 'base64_decode("' . $XML_RPC_xh[$parser]['ac'] . '")'; } elseif ($name=="BOOLEAN") { $XML_RPC_xh[$parser]['st'] .= $XML_RPC_xh[$parser]['ac']; } else {