summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2002-02-26 19:32:52 +0000
committerDerick Rethans <derick@php.net>2002-02-26 19:32:52 +0000
commit02cc197a77b32f27bd64282b98329ac20d1669e0 (patch)
treec1437d1433a62c211ff6b42b7485b23787cbffb7
parent253b53296c2d253a1e29bde348a9d410945b3b50 (diff)
downloadphp-git-02cc197a77b32f27bd64282b98329ac20d1669e0.tar.gz
- Bring error message back
-rw-r--r--ext/session/session.c6
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;
}