summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Walker <ka0ttic@gentoo.org>2005-07-06 10:40:15 +0000
committerAaron Walker <ka0ttic@gentoo.org>2005-07-06 10:40:15 +0000
commit98e89055c3dc789245ec128838b81be3964da4c7 (patch)
treecb5993f557077efd2b65360274aafcf8b399a9b2 /www-apps/phpwebsite/files
parentversion bump (diff)
downloadhistorical-98e89055c3dc789245ec128838b81be3964da4c7.tar.gz
historical-98e89055c3dc789245ec128838b81be3964da4c7.tar.bz2
historical-98e89055c3dc789245ec128838b81be3964da4c7.zip
Revision bump for security bug 97461.
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'www-apps/phpwebsite/files')
-rw-r--r--www-apps/phpwebsite/files/digest-phpwebsite-0.10.0-r34
-rw-r--r--www-apps/phpwebsite/files/phpwebsite-0.10.0-xml-rpc.diff29
2 files changed, 33 insertions, 0 deletions
diff --git a/www-apps/phpwebsite/files/digest-phpwebsite-0.10.0-r3 b/www-apps/phpwebsite/files/digest-phpwebsite-0.10.0-r3
new file mode 100644
index 000000000000..44795a4eecb4
--- /dev/null
+++ b/www-apps/phpwebsite/files/digest-phpwebsite-0.10.0-r3
@@ -0,0 +1,4 @@
+MD5 6d433111d1a40b6e94c0a33bd7f01a8f phpwebsite-0.10.0-full.tar.gz 4615559
+MD5 e3539ca482a24582bb65b9c23c701cde phpws_image_secure_patch.tgz 14846
+MD5 3a953b36b925288d7b1b4d185003248c phpws_files_security_patch3.tgz 4781
+MD5 7e22916bbac8c27677a65eb31b71ebe3 phpwebsite_security_patch_20050705.2.tgz 17343
diff --git a/www-apps/phpwebsite/files/phpwebsite-0.10.0-xml-rpc.diff b/www-apps/phpwebsite/files/phpwebsite-0.10.0-xml-rpc.diff
new file mode 100644
index 000000000000..2b0c83a485c4
--- /dev/null
+++ b/www-apps/phpwebsite/files/phpwebsite-0.10.0-xml-rpc.diff
@@ -0,0 +1,29 @@
+--- phpwebsite-0.10.0-full/lib/pear/XML/RPC.php.old 2004-09-21 21:44:25.000000000 +0200
++++ phpwebsite-0.10.0-full/lib/pear/XML/RPC.php 2005-07-04 22:28:08.000000000 +0200
+@@ -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 {