Bug 252214: Allow max of zero votes per bug - Patch by Alfred Karl Kornel <kornel.1@osu.edu> r=vladd a=justdave

This commit is contained in:
lpsolit%gmail.com 2005-06-06 21:37:57 +00:00
Родитель f0f2dfc325
Коммит c52c68258e
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1252,8 +1252,8 @@ if ($action eq 'update') {
CheckProduct($productold);
my $product_id = get_product_id($productold);
if (!detaint_natural($maxvotesperbug) || $maxvotesperbug == 0) {
print "Sorry, the max votes per bug must be a positive integer.";
if (!detaint_natural($maxvotesperbug)) {
print "Sorry, the max votes per bug must be an integer >= 0.";
PutTrailer($localtrailer);
exit;
}