From 38c7d0766195d9d84fcd81bc23b9c71bff5bea6d Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Sat, 5 Aug 2006 05:24:47 +0000 Subject: =?UTF-8?q?Bug=20305941:=20Remove=20profiles.refreshed=5Fwhen=20an?= =?UTF-8?q?d=20groups.last=5Fchanged=20-=20Patch=20by=20Fr=C3=A9d=C3=A9ric?= =?UTF-8?q?=20Buclin=20=20r=3Dmkanat=20a=3Dmyk?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bugzilla/Group.pm | 3 --- 1 file changed, 3 deletions(-) (limited to 'Bugzilla/Group.pm') diff --git a/Bugzilla/Group.pm b/Bugzilla/Group.pm index 45caf65cc..c273e7f20 100644 --- a/Bugzilla/Group.pm +++ b/Bugzilla/Group.pm @@ -37,7 +37,6 @@ use constant DB_COLUMNS => qw( groups.name groups.description groups.isbuggroup - groups.last_changed groups.userregexp groups.isactive ); @@ -99,7 +98,6 @@ sub id { return $_[0]->{'id'}; } sub name { return $_[0]->{'name'}; } sub description { return $_[0]->{'description'}; } sub is_bug_group { return $_[0]->{'isbuggroup'}; } -sub last_changed { return $_[0]->{'last_changed'}; } sub user_regexp { return $_[0]->{'userregexp'}; } sub is_active { return $_[0]->{'isactive'}; } @@ -157,7 +155,6 @@ Bugzilla::Group - Bugzilla group class. my $id = $group->id; my $name = $group->name; my $description = $group->description; - my $last_changed = $group->last_changed; my $user_reg_exp = $group->user_reg_exp; my $is_active = $group->is_active; -- cgit v1.2.1