From d12c283343406c9a5c4b5e76c1f77dce354efc38 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Tue, 8 Aug 2006 06:05:00 +0000 Subject: Bug 339383: Make Bugzilla::Group use Bugzilla::Object Patch By Max Kanat-Alexander r=bkor, a=myk --- editgroups.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editgroups.cgi') 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(); -- cgit v1.2.3-24-g4f1b