diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2010-03-29 23:59:51 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-03-29 23:59:51 +0200 |
commit | 861cae72a4b21dee95c716db4076c7aa78932f75 (patch) | |
tree | 87ca6bd5e5b87e26506c9029cd2fc4481967376e /Bugzilla.pm | |
parent | Bug 553693: A new logincookie is created when changing the password or email ... (diff) | |
download | bugzilla-861cae72a4b21dee95c716db4076c7aa78932f75.tar.gz bugzilla-861cae72a4b21dee95c716db4076c7aa78932f75.tar.bz2 bugzilla-861cae72a4b21dee95c716db4076c7aa78932f75.zip |
Bug 552476: Remove the obsolete Bugzilla::Flag->has_flags method
a=LpSolit
Diffstat (limited to 'Bugzilla.pm')
-rw-r--r-- | Bugzilla.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla.pm b/Bugzilla.pm index e8a405412..8bcef7b28 100644 --- a/Bugzilla.pm +++ b/Bugzilla.pm @@ -536,7 +536,7 @@ sub has_flags { my $class = shift; if (!defined $class->request_cache->{has_flags}) { - $class->request_cache->{has_flags} = Bugzilla::Flag::has_flags(); + $class->request_cache->{has_flags} = Bugzilla::Flag->any_exist; } return $class->request_cache->{has_flags}; } |