diff options
author | mkanat%kerio.com <> | 2005-08-13 21:27:03 +0200 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-08-13 21:27:03 +0200 |
commit | dddc17ec8b38d7f90b7be7d9fd6ab9629077f3df (patch) | |
tree | 9836708e345769706c774f799701aa5b40b02cc5 /editproducts.cgi | |
parent | 71a6b9cf80cd368fd3fd69d673ddf10142763e59 (diff) | |
download | bugzilla-dddc17ec8b38d7f90b7be7d9fd6ab9629077f3df.tar.gz bugzilla-dddc17ec8b38d7f90b7be7d9fd6ab9629077f3df.tar.xz |
Bug 303669: Bugzilla mis-uses perl subroutine prototypes
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
Diffstat (limited to 'editproducts.cgi')
-rwxr-xr-x | editproducts.cgi | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/editproducts.cgi b/editproducts.cgi index cacf8eef8..d6d909360 100755 --- a/editproducts.cgi +++ b/editproducts.cgi @@ -53,7 +53,7 @@ my %ctl = ( # TestProduct: just returns if the specified product does exists # CheckProduct: same check, optionally emit an error text -sub TestProduct ($) +sub TestProduct { my $prod = shift; @@ -64,7 +64,7 @@ sub TestProduct ($) return FetchOneColumn(); } -sub CheckProduct ($) +sub CheckProduct { my $prod = shift; @@ -85,7 +85,7 @@ sub CheckProduct ($) # TestClassification: just returns if the specified classification does exists # CheckClassification: same check, optionally emit an error text -sub TestClassification ($) +sub TestClassification { my $cl = shift; @@ -96,7 +96,7 @@ sub TestClassification ($) return FetchOneColumn(); } -sub CheckClassification ($) +sub CheckClassification { my $cl = shift; @@ -118,7 +118,7 @@ sub CheckClassification ($) # we need this routine, which does things properly, and will # eventually be the only version. (The older versions assume a # $template->put_header() call has been made) -sub CheckClassificationNew ($) +sub CheckClassificationNew { my $cl = shift; @@ -134,7 +134,7 @@ sub CheckClassificationNew ($) } -sub CheckClassificationProduct ($$) +sub CheckClassificationProduct { my $cl = shift; my $prod = shift; @@ -161,7 +161,7 @@ sub CheckClassificationProduct ($$) } } -sub CheckClassificationProductNew ($$) +sub CheckClassificationProductNew { my ($cl, $prod) = @_; my $dbh = Bugzilla->dbh; @@ -189,7 +189,7 @@ sub CheckClassificationProductNew ($$) # Displays the form to edit a products parameters # -sub EmitFormElements ($$$$$$$$$) +sub EmitFormElements { my ($classification, $product, $description, $milestoneurl, $disallownew, $votesperuser, $maxvotesperbug, $votestoconfirm, $defaultmilestone) @@ -250,7 +250,7 @@ sub EmitFormElements ($$$$$$$$$) # Displays a text like "a.", "a or b.", "a, b or c.", "a, b, c or d." # -sub PutTrailer (@) +sub PutTrailer { my (@links) = ("Back to the <A HREF=\"query.cgi\">query page</A>", @_); |