Removing the last vote on a bug was causing an SQL error.

This commit is contained in:
terry%mozilla.org 1999-10-13 20:17:01 +00:00
Родитель 19d6a02128
Коммит e034619875
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -103,6 +103,7 @@ foreach my $id (@buglist) {
foreach my $id (keys %affected) {
SendSQL("select sum(count) from votes where bug_id = $id");
my $v = FetchOneColumn();
$v ||= 0;
SendSQL("update bugs set votes = $v, delta_ts=delta_ts where bug_id = $id");
}
SendSQL("unlock tables");