Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2019-07-02 09:19:05 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2019-07-02 09:19:05 +0300
commit3560ef0dfccdf5e99dd60b1a5666499b82a5447b (patch)
treea68b8263700057c2f0996479537f010079a93e7f
parentbbf9487d3b2dd789712c23ba5a824e390bc65993 (diff)
parente0fd026bdf6bdab3fc1a85d6ff2fad28cfb57b85 (diff)
Merge branch 'develop' into 5.0.0
-rw-r--r--INSTALL.markdown14
-rw-r--r--redis.c2
2 files changed, 7 insertions, 9 deletions
diff --git a/INSTALL.markdown b/INSTALL.markdown
index 88d1b360..96d13994 100644
--- a/INSTALL.markdown
+++ b/INSTALL.markdown
@@ -36,22 +36,22 @@ Follow the DLL link on the [https://pecl.php.net/package/redis](https://pecl.php
## Fedora
-Fedora users can install the package from the official repositor.
+Fedora users can install the package from the official repository.
-**Fedora ≤ 28, Version 3 **
+### Fedora ≤ 30, Version 4
-Installation of the [php-pecl-redis](https://apps.fedoraproject.org/packages/php-pecl-redis) package:
+Installation of the [php-pecl-redis4](https://apps.fedoraproject.org/packages/php-pecl-redis4) package:
~~~
-dnf install php-pecl-redis
+dnf install php-pecl-redis4
~~~
-**Fedora ≥ 27, Version 4 **
+### Fedora ≥ 29, Version 5
-Installation of the [php-pecl-redis4](https://apps.fedoraproject.org/packages/php-pecl-redis4) package:
+Installation of the [php-pecl-redis5](https://apps.fedoraproject.org/packages/php-pecl-redis5) package:
~~~
-dnf install php-pecl-redis4
+dnf install php-pecl-redis5
~~~
## RHEL / CentOS
diff --git a/redis.c b/redis.c
index 84139e8d..3cc13f52 100644
--- a/redis.c
+++ b/redis.c
@@ -772,9 +772,7 @@ PHP_MINIT_FUNCTION(redis)
module_number);
/* Base Exception class */
-#if HAVE_SPL
exception_ce = zend_hash_str_find_ptr(CG(class_table), "RuntimeException", sizeof("RuntimeException") - 1);
-#endif
if (exception_ce == NULL) {
exception_ce = zend_exception_get_default(TSRMLS_C);
}