зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
f0f2dfc325
Коммит
c52c68258e
|
@ -1252,8 +1252,8 @@ if ($action eq 'update') {
|
||||||
CheckProduct($productold);
|
CheckProduct($productold);
|
||||||
my $product_id = get_product_id($productold);
|
my $product_id = get_product_id($productold);
|
||||||
|
|
||||||
if (!detaint_natural($maxvotesperbug) || $maxvotesperbug == 0) {
|
if (!detaint_natural($maxvotesperbug)) {
|
||||||
print "Sorry, the max votes per bug must be a positive integer.";
|
print "Sorry, the max votes per bug must be an integer >= 0.";
|
||||||
PutTrailer($localtrailer);
|
PutTrailer($localtrailer);
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче