diff options
author | mkanat%kerio.com <> | 2005-04-20 08:44:03 +0200 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-04-20 08:44:03 +0200 |
commit | 993f0b3529d4c708fcbaa3fc8efcdeee9e1775d5 (patch) | |
tree | b05db095d5f2997818dab6db84b32d80890876ba /Bugzilla/DB | |
parent | 57394ff026769d28ef6b5d077cb4655adf032936 (diff) | |
download | bugzilla-993f0b3529d4c708fcbaa3fc8efcdeee9e1775d5.tar.gz bugzilla-993f0b3529d4c708fcbaa3fc8efcdeee9e1775d5.tar.xz |
Bug 284599: Use of REGEXP search is not consistent wrt case sensitivity
Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=mkanat, a=justdave
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r-- | Bugzilla/DB/Pg.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/DB/Pg.pm b/Bugzilla/DB/Pg.pm index e635096f2..4fe8d2244 100644 --- a/Bugzilla/DB/Pg.pm +++ b/Bugzilla/DB/Pg.pm @@ -87,11 +87,11 @@ sub bz_last_key { } sub sql_regexp { - return "~"; + return "~*"; } sub sql_not_regexp { - return "!~" + return "!~*" } sub sql_limit { |