From 6aa58d9939018f1960106f03b5d440e916e01867 Mon Sep 17 00:00:00 2001 From: Paul Date: Thu, 4 Jul 2013 10:12:36 +0200 Subject: [PATCH] Allow query parameters starting with an underscore --- lib/Doctrine/ORM/Query/Lexer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/ORM/Query/Lexer.php b/lib/Doctrine/ORM/Query/Lexer.php index bf0b5f6db..d5721a735 100644 --- a/lib/Doctrine/ORM/Query/Lexer.php +++ b/lib/Doctrine/ORM/Query/Lexer.php @@ -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_]*' ); }