sniper Thu Nov 10 02:51:00 2005 EDT Modified files: (Branch: PHP_5_1) /php-src/ext/tokenizer tokenizer.c /php-src NEWS Log: MFH: - Fixed bug #35179 (tokenizer extension needs T_HALT_COMPILER) http://cvs.php.net/diff.php/php-src/ext/tokenizer/tokenizer.c?r1=1.31.2.1&r2=1.31.2.2&ty=u Index: php-src/ext/tokenizer/tokenizer.c diff -u php-src/ext/tokenizer/tokenizer.c:1.31.2.1 php-src/ext/tokenizer/tokenizer.c:1.31.2.2 --- php-src/ext/tokenizer/tokenizer.c:1.31.2.1 Fri Oct 21 05:32:40 2005 +++ php-src/ext/tokenizer/tokenizer.c Thu Nov 10 02:50:59 2005 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: tokenizer.c,v 1.31.2.1 2005/10/21 09:32:40 dmitry Exp $ */ +/* $Id: tokenizer.c,v 1.31.2.2 2005/11/10 07:50:59 sniper Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -282,7 +282,8 @@ REGISTER_LONG_CONSTANT("T_THROW", T_THROW, CONST_CS | CONST_PERSISTENT); REGISTER_LONG_CONSTANT("T_TRY", T_TRY, CONST_CS | CONST_PERSISTENT); REGISTER_LONG_CONSTANT("T_CLONE", T_CLONE, CONST_CS | CONST_PERSISTENT); - + REGISTER_LONG_CONSTANT("T_HALT_COMPILER", T_HALT_COMPILER, CONST_CS | CONST_PERSISTENT); + return SUCCESS; } /* }}} */ @@ -495,6 +496,7 @@ case T_THROW: return "T_THROW"; case T_TRY: return "T_TRY"; case T_CLONE: return "T_CLONE"; + case T_HALT_COMPILER: return "T_HALT_COMPILER"; } return "UNKNOWN"; } http://cvs.php.net/diff.php/php-src/NEWS?r1=1.2027.2.184&r2=1.2027.2.185&ty=u Index: php-src/NEWS diff -u php-src/NEWS:1.2027.2.184 php-src/NEWS:1.2027.2.185 --- php-src/NEWS:1.2027.2.184 Tue Nov 8 11:57:10 2005 +++ php-src/NEWS Thu Nov 10 02:50:59 2005 @@ -4,6 +4,7 @@ - Fixed bug in mysqli extension with unsigned int(11) being represented as signed integer in PHP instead of string in 32bit systems. (Andrey) - Fixed initializing and argument checking for posix_mknod(). (Derick) +- Fixed bug #35179 (tokenizer extension needs T_HALT_COMPILER). (Greg) - Fixed bug #35142 (SOAP Client/Server Complex Object Support). (Dmitry) - Fixed bug #35135 (PDOStatment without related PDO object may crash). (Ilia) - Fixed bug #35091 (SoapClient leaks memory). (Dmitry)
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php