1
0
mirror of synced 2024-12-05 03:06:05 +03:00

Allow query parameters starting with an underscore

This commit is contained in:
Paul 2013-07-04 10:12:36 +02:00
parent dc2be816a8
commit 6aa58d9939

View File

@ -129,7 +129,7 @@ class Lexer extends \Doctrine\Common\Lexer
'[a-z_\\\][a-z0-9_\:\\\]*[a-z0-9_]{1}',
'(?:[0-9]+(?:[\.][0-9]+)*)(?:e[+-]?[0-9]+)?',
"'(?:[^']|'')*'",
'\?[0-9]*|:[a-z]{1}[a-z0-9_]{0,}'
'\?[0-9]*|:[a-z_][a-z0-9_]*'
);
}