Bug 193985 - errors from SendSQL aren't being reported

r,a=justdave
This commit is contained in:
bbaetz%acm.org 2003-02-20 07:07:42 +00:00
Родитель 871954dc86
Коммит e1c362489e
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -65,11 +65,11 @@ sub SendSQL {
$_current_sth = Bugzilla->dbh->prepare($str);
$_current_sth->execute;
# This is really really ugly, but its what we get for not doing
# error checking for 5 years. See bug 189446 and bug 192531
$_current_sth->{RaiseError} = 0;
return $_current_sth->execute;
}
# Its much much better to use bound params instead of this