diff options
| -rw-r--r-- | ext/session/session.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/session/session.c b/ext/session/session.c index 44ffb9fb4c..b83ff87d1a 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -86,9 +86,9 @@ static const ps_serializer *_php_find_ps_serializer(char *name TSRMLS_DC); static PHP_INI_MH(OnUpdateSaveHandler) { PS(mod) = _php_find_ps_module(new_value TSRMLS_CC); -/* if(!PS(mod)) { */ -/* php_error(E_ERROR,"Cannot find save handler %s",new_value); */ -/* } */ + if(!PS(mod)) { + php_error(E_ERROR,"Cannot find save handler %s",new_value); + } return SUCCESS; } |
