summaryrefslogtreecommitdiff
path: root/ext/standard/url_scanner_ex.re
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2003-02-12 14:56:13 +0000
committerIlia Alshanetsky <iliaa@php.net>2003-02-12 14:56:13 +0000
commite1802d72287027a221308ed3c26a7e15c17b7bec (patch)
tree320b05e4e6f1cab4d21f2e3a48c6e9948003791a /ext/standard/url_scanner_ex.re
parent8c5ece16373a540915bebc9d166b41ea0353693b (diff)
downloadphp-git-e1802d72287027a221308ed3c26a7e15c17b7bec.tar.gz
Fixed bug #22048 (incorrect insertion of session id when tabs are used to
separate tag elements).
Diffstat (limited to 'ext/standard/url_scanner_ex.re')
-rw-r--r--ext/standard/url_scanner_ex.re4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/url_scanner_ex.re b/ext/standard/url_scanner_ex.re
index 329fb22245..f3c638863e 100644
--- a/ext/standard/url_scanner_ex.re
+++ b/ext/standard/url_scanner_ex.re
@@ -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 @@ state_val:
/*!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; }
*/