From 02cc197a77b32f27bd64282b98329ac20d1669e0 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Tue, 26 Feb 2002 19:32:52 +0000 Subject: - Bring error message back --- ext/session/session.c | 6 +++--- 1 file 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; } -- cgit v1.2.1