Bug 191080 - fix SQLQuote return value for an undef input

r=gerv, a=justdave
This commit is contained in:
bbaetz%acm.org 2003-01-30 07:20:56 +00:00
Родитель 060a90105f
Коммит f26e6ef885
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -69,7 +69,7 @@ sub SqlQuote {
my ($str) = @_;
# Backwards compat code
return '' if not defined $str;
return "''" if not defined $str;
require Bugzilla;