diff options
author | mkanat%kerio.com <> | 2005-08-09 12:58:58 +0000 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-08-09 12:58:58 +0000 |
commit | 42a0e99d5c916b4123719d7a362e12e65e15fc2f (patch) | |
tree | 4f93a13b5360e7621601384e04e70dc455ff0c46 /editgroups.cgi | |
parent | Bug 285700: bump minimum File::Spec version to 0.84 to deal with taint errors (diff) | |
download | bugzilla-42a0e99d5c916b4123719d7a362e12e65e15fc2f.tar.gz bugzilla-42a0e99d5c916b4123719d7a362e12e65e15fc2f.tar.bz2 bugzilla-42a0e99d5c916b4123719d7a362e12e65e15fc2f.zip |
Bug 303669: Bugzilla mis-uses perl subroutine prototypes
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
Diffstat (limited to 'editgroups.cgi')
-rwxr-xr-x | editgroups.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editgroups.cgi b/editgroups.cgi index 5e74163da..eb245dfd2 100755 --- a/editgroups.cgi +++ b/editgroups.cgi @@ -51,7 +51,7 @@ UserInGroup("creategroups") my $action = trim($cgi->param('action') || ''); # RederiveRegexp: update user_group_map with regexp-based grants -sub RederiveRegexp ($$) +sub RederiveRegexp { my $regexp = shift; my $gid = shift; |