diff options
| author | Arpad Ray <arpad@php.net> | 2011-09-14 15:30:30 +0000 |
|---|---|---|
| committer | Arpad Ray <arpad@php.net> | 2011-09-14 15:30:30 +0000 |
| commit | aaa86e2287654afce25b1019a15a5b2337ad8977 (patch) | |
| tree | e117b4b00d7dcb7b02d89333dabed6944bcebaa3 /ext/session/mod_user_class.c | |
| parent | 93dd61659f691840c884c7eefaf12082f447fa91 (diff) | |
| download | php-git-aaa86e2287654afce25b1019a15a5b2337ad8977.tar.gz | |
fix default session handler error message
Diffstat (limited to 'ext/session/mod_user_class.c')
| -rw-r--r-- | ext/session/mod_user_class.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/mod_user_class.c b/ext/session/mod_user_class.c index e72f9585c4..f817b07bb7 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 TSRMLS_CC, E_CORE_ERROR, "Called default SessionHandler but session.save_handler is user"); \ + php_error_docref(NULL TSRMLS_CC, E_CORE_ERROR, "Cannot call default session handler"); \ RETURN_FALSE; \ } |
