diff options
author | lpsolit%gmail.com <> | 2006-08-05 05:24:47 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-08-05 05:24:47 +0000 |
commit | 38c7d0766195d9d84fcd81bc23b9c71bff5bea6d (patch) | |
tree | f3688f465408bcccf98c6bf604b3023011dddd2b /Bugzilla/Group.pm | |
parent | Additional fix for bug 347360: No value returned when calling $flag_type->fla... (diff) | |
download | bugzilla-38c7d0766195d9d84fcd81bc23b9c71bff5bea6d.tar.gz bugzilla-38c7d0766195d9d84fcd81bc23b9c71bff5bea6d.tar.bz2 bugzilla-38c7d0766195d9d84fcd81bc23b9c71bff5bea6d.zip |
Bug 305941: Remove profiles.refreshed_when and groups.last_changed - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=myk
Diffstat (limited to 'Bugzilla/Group.pm')
-rw-r--r-- | Bugzilla/Group.pm | 3 |
1 files changed, 0 insertions, 3 deletions
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; |