summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Group.pm
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-08-05 07:24:47 +0200
committerlpsolit%gmail.com <>2006-08-05 07:24:47 +0200
commit38c7d0766195d9d84fcd81bc23b9c71bff5bea6d (patch)
treef3688f465408bcccf98c6bf604b3023011dddd2b /Bugzilla/Group.pm
parented12ad1849d654f8fb710d093c7aaf92f35e56ab (diff)
downloadbugzilla-38c7d0766195d9d84fcd81bc23b9c71bff5bea6d.tar.gz
bugzilla-38c7d0766195d9d84fcd81bc23b9c71bff5bea6d.tar.xz
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.pm3
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;