diff options
author | bbaetz%student.usyd.edu.au <> | 2002-08-10 11:19:52 +0200 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-08-10 11:19:52 +0200 |
commit | 11774254a7944f91c25aa80c99a964e28b3a237f (patch) | |
tree | dda070b16e086e8a97abc5253096cc480468fe7e /Bugzilla/Search.pm | |
parent | 1d9c4444a8e8d2f89827dbcfaf32656f20929bdc (diff) | |
download | bugzilla-11774254a7944f91c25aa80c99a964e28b3a237f.tar.gz bugzilla-11774254a7944f91c25aa80c99a964e28b3a237f.tar.xz |
Miseed &:: for call to SqlQuote, no bug # (cleanup from bug 158474)
r=justdave x2
Diffstat (limited to 'Bugzilla/Search.pm')
-rw-r--r-- | Bugzilla/Search.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 862602685..da47a6b29 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -827,7 +827,7 @@ sub GetByWordList { my $word = $w; if ($word ne "") { $word =~ tr/A-Z/a-z/; - $word = SqlQuote(quotemeta($word)); + $word = &::SqlQuote(quotemeta($word)); $word =~ s/^'//; $word =~ s/'$//; $word = '(^|[^a-z0-9])' . $word . '($|[^a-z0-9])'; |