summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRenat Lumpau <rl03@gentoo.org>2005-08-22 22:10:14 +0000
committerRenat Lumpau <rl03@gentoo.org>2005-08-22 22:10:14 +0000
commitae45eb66a86c2ff926d566384c04688d738a97d0 (patch)
treeffd4369bed0ab159ae2516ce6def26269f0a685f /www-apps/tikiwiki/files
parentHousekeeping (diff)
downloadhistorical-ae45eb66a86c2ff926d566384c04688d738a97d0.tar.gz
historical-ae45eb66a86c2ff926d566384c04688d738a97d0.tar.bz2
historical-ae45eb66a86c2ff926d566384c04688d738a97d0.zip
Removing vulnerable versions
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'www-apps/tikiwiki/files')
-rw-r--r--www-apps/tikiwiki/files/digest-tikiwiki-1.8.5-r11
-rw-r--r--www-apps/tikiwiki/files/digest-tikiwiki-1.9.01
-rw-r--r--www-apps/tikiwiki/files/tikiwiki-1.8.5-xmlrpc.patch29
3 files changed, 0 insertions, 31 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
deleted file mode 100644
index fd9e2fe7ff1d..000000000000
--- a/www-apps/tikiwiki/files/digest-tikiwiki-1.8.5-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 e64dc5ffcee6699993e90ea1ed8ce1af tikiwiki-1.8.5.tar.bz2 5706055
diff --git a/www-apps/tikiwiki/files/digest-tikiwiki-1.9.0 b/www-apps/tikiwiki/files/digest-tikiwiki-1.9.0
deleted file mode 100644
index baa90951f379..000000000000
--- a/www-apps/tikiwiki/files/digest-tikiwiki-1.9.0
+++ /dev/null
@@ -1 +0,0 @@
-MD5 524deba410cc17048781b3a999d7b509 tikiwiki-1.9.0.tar.bz2 6007822
diff --git a/www-apps/tikiwiki/files/tikiwiki-1.8.5-xmlrpc.patch b/www-apps/tikiwiki/files/tikiwiki-1.8.5-xmlrpc.patch
deleted file mode 100644
index 4e037374f58e..000000000000
--- a/www-apps/tikiwiki/files/tikiwiki-1.8.5-xmlrpc.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- 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 {