diff options
author | Stuart Herbert <stuart@gentoo.org> | 2005-07-05 23:10:00 +0000 |
---|---|---|
committer | Stuart Herbert <stuart@gentoo.org> | 2005-07-05 23:10:00 +0000 |
commit | 7ce9416c67f8765c2b57c913cde3c5dae2261ed9 (patch) | |
tree | 5fbc697254c6b331e8fbe586e3f6242c847f46b7 /www-apps/tikiwiki/files | |
parent | QA: Added readline to IUSE. (diff) | |
download | historical-7ce9416c67f8765c2b57c913cde3c5dae2261ed9.tar.gz historical-7ce9416c67f8765c2b57c913cde3c5dae2261ed9.tar.bz2 historical-7ce9416c67f8765c2b57c913cde3c5dae2261ed9.zip |
Patch for security bug #97648
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'www-apps/tikiwiki/files')
-rw-r--r-- | www-apps/tikiwiki/files/digest-tikiwiki-1.8.5-r1 | 1 | ||||
-rw-r--r-- | www-apps/tikiwiki/files/tikiwiki-1.8.5-xmlrpc.patch | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/www-apps/tikiwiki/files/digest-tikiwiki-1.8.5-r1 b/www-apps/tikiwiki/files/digest-tikiwiki-1.8.5-r1 new file mode 100644 index 000000000000..fd9e2fe7ff1d --- /dev/null +++ b/www-apps/tikiwiki/files/digest-tikiwiki-1.8.5-r1 @@ -0,0 +1 @@ +MD5 e64dc5ffcee6699993e90ea1ed8ce1af tikiwiki-1.8.5.tar.bz2 5706055 diff --git a/www-apps/tikiwiki/files/tikiwiki-1.8.5-xmlrpc.patch b/www-apps/tikiwiki/files/tikiwiki-1.8.5-xmlrpc.patch new file mode 100644 index 000000000000..4e037374f58e --- /dev/null +++ b/www-apps/tikiwiki/files/tikiwiki-1.8.5-xmlrpc.patch @@ -0,0 +1,29 @@ +--- tikiwiki-1.8.5/lib/xmlrpc.inc.old 2005-07-04 22:45:18.000000000 +0200 ++++ tikiwiki-1.8.5/lib/xmlrpc.inc 2002-10-15 17:42:38.000000000 +0200 +@@ -160,7 +160,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; +@@ -225,7 +225,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 +@@ -246,7 +246,7 @@ + // we use double quotes rather than single so backslashification works OK + $_xh[$parser]['st'].="\"". $_xh[$parser]['ac'] . "\""; + } else if ($_xh[$parser]['qt']==2) { +- $_xh[$parser]['st'].="base64_decode('". $_xh[$parser]['ac'] . "')"; ++ $_xh[$parser]['st'].='base64_decode("'. $_xh[$parser]['ac'] . '")'; + } else if ($name=="BOOLEAN") { + $_xh[$parser]['st'].=$_xh[$parser]['ac']; + } else { |