diff options
author | lpsolit%gmail.com <> | 2005-10-24 09:44:10 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-10-24 09:44:10 +0200 |
commit | a637b882206ae3dc5fd6101da96bb6ee0ca53260 (patch) | |
tree | 2f0c05c66aa5e6d81bb88636a31cd40523669f15 /editvalues.cgi | |
parent | 46c89016520cf272223cba52e704388fa94b4392 (diff) | |
download | bugzilla-a637b882206ae3dc5fd6101da96bb6ee0ca53260.tar.gz bugzilla-a637b882206ae3dc5fd6101da96bb6ee0ca53260.tar.xz |
Bug 313533: editvalues.cgi: Reference found where even-sized list expected at line 122 - Patch by Olav Vitters <bugzilla-mozilla@bkor.dhs.org> r=LpSolit a=justdave
Diffstat (limited to 'editvalues.cgi')
-rwxr-xr-x | editvalues.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editvalues.cgi b/editvalues.cgi index 5b45aac92..b0a1fbb71 100755 --- a/editvalues.cgi +++ b/editvalues.cgi @@ -119,7 +119,7 @@ my $action = trim($cgi->param('action') || ''); # Gives the name of the parameter associated with the field # and representing its default value. -my %defaults = {}; +my %defaults; $defaults{'op_sys'} = 'defaultopsys'; $defaults{'rep_platform'} = 'defaultplatform'; $defaults{'priority'} = 'defaultpriority'; |