diff options
author | mkanat%bugzilla.org <> | 2006-06-01 09:23:17 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2006-06-01 09:23:17 +0200 |
commit | 24a02ebf00c318c3406fc4c4f38a8f93480b0548 (patch) | |
tree | 7680b275b7ea3e00a221d5a62e4a43ea42169752 /config.cgi | |
parent | 24a97437dccabbe0778e2e4f8330b47aefda428d (diff) | |
download | bugzilla-24a02ebf00c318c3406fc4c4f38a8f93480b0548.tar.gz bugzilla-24a02ebf00c318c3406fc4c4f38a8f93480b0548.tar.xz |
Bug 329377: Bugzilla::Object base class for objects
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, r=kevin.benton, a=justdave
Diffstat (limited to 'config.cgi')
-rwxr-xr-x | config.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.cgi b/config.cgi index fe1c5936b..ed16c28a8 100755 --- a/config.cgi +++ b/config.cgi @@ -66,7 +66,7 @@ $vars->{'priority'} = \@::legal_priority; $vars->{'severity'} = \@::legal_severity; $vars->{'platform'} = \@::legal_platform; $vars->{'op_sys'} = \@::legal_opsys; -$vars->{'keyword'} = [map($_->name, Bugzilla::Keyword::get_all_keywords())]; +$vars->{'keyword'} = [map($_->name, Bugzilla::Keyword->get_all)]; $vars->{'resolution'} = \@::legal_resolution; $vars->{'status'} = \@::legal_bug_status; |