summaryrefslogtreecommitdiff
path: root/ext/session/mod_user_class.c
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2015-07-21 11:18:36 +0200
committerAnatol Belski <ab@php.net>2015-07-21 11:18:36 +0200
commit6065b29fe41f09e01dd06ba21980e0344f13230c (patch)
treeb933608962b74dddead7442798a560b125cef4bc /ext/session/mod_user_class.c
parent1767992e4e5f9d7c82571009b8b7f21f5f6ccd64 (diff)
downloadphp-git-6065b29fe41f09e01dd06ba21980e0344f13230c.tar.gz
Reverted ad4533fdbabcc3e545277e30023b2fdce16297a0
The E_ERROR to E_RECOVERABLE_ERROR should be readded with the proper tests.
Diffstat (limited to 'ext/session/mod_user_class.c')
-rw-r--r--ext/session/mod_user_class.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/mod_user_class.c b/ext/session/mod_user_class.c
index d06902ce27..82aea14854 100644
--- a/ext/session/mod_user_class.c
+++ b/ext/session/mod_user_class.c
@@ -23,7 +23,7 @@
#define PS_SANITY_CHECK \
if (PS(default_mod) == NULL) { \
- php_error_docref(NULL, E_RECOVERABLE_ERROR, "Cannot call default session handler"); \
+ php_error_docref(NULL, E_CORE_ERROR, "Cannot call default session handler"); \
RETURN_FALSE; \
}