tony2001 Wed Aug 30 17:57:25 2006 UTC Modified files: /php-src/ext/session session.c Log: fix typo http://cvs.php.net/viewvc.cgi/php-src/ext/session/session.c?r1=1.449&r2=1.450&diff_format=u Index: php-src/ext/session/session.c diff -u php-src/ext/session/session.c:1.449 php-src/ext/session/session.c:1.450 --- php-src/ext/session/session.c:1.449 Wed Aug 30 16:24:31 2006 +++ php-src/ext/session/session.c Wed Aug 30 17:57:25 2006 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: session.c,v 1.449 2006/08/30 16:24:31 tony2001 Exp $ */ +/* $Id: session.c,v 1.450 2006/08/30 17:57:25 tony2001 Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -104,7 +104,7 @@ } else { err_type = E_ERROR; } - php_error_docref(NULL TSRMLS_CC, E_ERROR, "Cannot find save handler %s", new_value); + php_error_docref(NULL TSRMLS_CC, err_type, "Cannot find save handler %s", new_value); return FAILURE; } PS(mod) = tmp;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php