summaryrefslogtreecommitdiffstats
path: root/php-pear-1.9.4-restcache.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2015-10-07 12:57:13 +0200
committerRemi Collet <fedora@famillecollet.com>2015-10-07 12:57:13 +0200
commita6b20f3ac70bbd3db90c0d635ec6f543b9d4f0fa (patch)
tree26f489e0a867ea338ffcecfa7656c1c77de527d2 /php-pear-1.9.4-restcache.patch
parent88a99c9ae04c8141ec26ea7b867ea618ae2dd9b1 (diff)
php-pear: 1.10.0
Diffstat (limited to 'php-pear-1.9.4-restcache.patch')
-rw-r--r--php-pear-1.9.4-restcache.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/php-pear-1.9.4-restcache.patch b/php-pear-1.9.4-restcache.patch
deleted file mode 100644
index 361309b..0000000
--- a/php-pear-1.9.4-restcache.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-
-Workaround for:
-
- https://bugzilla.redhat.com/show_bug.cgi?id=747361
-
---- REST.php.restcache
-+++ REST.php
-@@ -234,6 +234,13 @@
- }
- }
-
-+ if (!is_writeable($cache_dir)) {
-+ // If writing to the cache dir is not going to work, silently do nothing.
-+ // An ugly hack, but retains compat with PEAR 1.9.1 where many commands
-+ // work fine as non-root user (w/out write access to default cache dir).
-+ return true;
-+ }
-+
- if ($cacheid === null && $nochange) {
- $cacheid = unserialize(implode('', file($cacheidfile)));
- }