diff options
author | mkanat%bugzilla.org <> | 2006-08-08 08:05:00 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2006-08-08 08:05:00 +0200 |
commit | d12c283343406c9a5c4b5e76c1f77dce354efc38 (patch) | |
tree | e3f600bd8ccca8375c28f2ca3c8701dc71fd6b5e /editgroups.cgi | |
parent | 5c377e30d41de59b2c00beaea45710445e70f2c9 (diff) | |
download | bugzilla-d12c283343406c9a5c4b5e76c1f77dce354efc38.tar.gz bugzilla-d12c283343406c9a5c4b5e76c1f77dce354efc38.tar.xz |
Bug 339383: Make Bugzilla::Group use Bugzilla::Object
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=bkor, a=myk
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 a26bd0c77..7ab2ac62e 100755 --- a/editgroups.cgi +++ b/editgroups.cgi @@ -176,7 +176,7 @@ sub CheckGroupRegexp { # If no action is specified, get a list of all groups available. unless ($action) { - my @groups = Bugzilla::Group::get_all_groups(); + my @groups = Bugzilla::Group->get_all; $vars->{'groups'} = \@groups; print $cgi->header(); |