iliaa Wed Feb 12 09:56:13 2003 EDT
Modified files:
/php4/ext/standard url_scanner_ex.re url_scanner_ex.c
Log:
Fixed bug #22048 (incorrect insertion of session id when tabs are used to
separate tag elements).
Index: php4/ext/standard/url_scanner_ex.re
diff -u php4/ext/standard/url_scanner_ex.re:1.63
php4/ext/standard/url_scanner_ex.re:1.64
--- php4/ext/standard/url_scanner_ex.re:1.63 Mon Sep 30 00:56:38 2002
+++ php4/ext/standard/url_scanner_ex.re Wed Feb 12 09:56:13 2003
@@ -2,7 +2,7 @@
+----------------------------------------------------------------------+
| PHP Version 4 |
+----------------------------------------------------------------------+
- | Copyright (c) 1997-2002 The PHP Group |
+ | Copyright (c) 1997-2003 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 2.02 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
@@ -322,7 +322,7 @@
/*!re2c
["] (any\[">])* ["] { handle_val(STD_ARGS, 1, '"'); goto state_next_arg_begin; }
['] (any\['>])* ['] { handle_val(STD_ARGS, 1, '\''); goto state_next_arg_begin; }
- (any\[ \n>])+ { handle_val(STD_ARGS, 0, '\0'); goto
state_next_arg_begin; }
+ (any\[ \t\n>])+ { handle_val(STD_ARGS, 0, '\0'); goto state_next_arg_begin; }
any { passthru(STD_ARGS); goto
state_next_arg_begin; }
*/
Index: php4/ext/standard/url_scanner_ex.c
diff -u php4/ext/standard/url_scanner_ex.c:1.73 php4/ext/standard/url_scanner_ex.c:1.74
--- php4/ext/standard/url_scanner_ex.c:1.73 Tue Dec 31 11:07:56 2002
+++ php4/ext/standard/url_scanner_ex.c Wed Feb 12 09:56:13 2003
@@ -1,5 +1,5 @@
-/* Generated by re2c 0.5 on Mon Sep 30 06:55:58 2002 */
-#line 1 "/home/sas/src/php4/ext/standard/url_scanner_ex.re"
+/* Generated by re2c 0.5 on Wed Feb 12 09:54:41 2003 */
+#line 1 "/home/rei/PHP_CVS/php5/ext/standard/url_scanner_ex.re"
/*
+----------------------------------------------------------------------+
| PHP Version 4 |
@@ -706,7 +706,7 @@
unsigned int yyaccept;
static unsigned char yybm[] = {
248, 248, 248, 248, 248, 248, 248, 248,
- 248, 248, 160, 248, 248, 248, 248, 248,
+ 248, 160, 160, 248, 248, 248, 248, 248,
248, 248, 248, 248, 248, 248, 248, 248,
248, 248, 248, 248, 248, 248, 248, 248,
160, 248, 56, 248, 248, 248, 248, 200,
@@ -745,7 +745,7 @@
yych = *YYCURSOR;
if(yych <= '!'){
if(yych <= '\n'){
- if(yych <= '\t') goto yy63;
+ if(yych <= '\b') goto yy63;
goto yy64;
} else {
if(yych == ' ') goto yy64;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php