Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
33ee1e88
Commit
33ee1e88
authored
Jun 07, 2005
by
lpsolit%gmail.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 252214: Allow max of zero votes per bug - Patch by Alfred Karl Kornel…
Bug 252214: Allow max of zero votes per bug - Patch by Alfred Karl Kornel <kornel.1@osu.edu> r=vladd a=justdave
parent
546f39ba
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
editproducts.cgi
editproducts.cgi
+2
-2
No files found.
editproducts.cgi
View file @
33ee1e88
...
...
@@ -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 a
n integer >= 0
."
;
PutTrailer
(
$localtrailer
);
exit
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment