From fbe9a7a9a22004e3cc23a61b84148da8a0c300e9 Mon Sep 17 00:00:00 2001 From: Max Kanat-Alexander Date: Tue, 15 Jun 2010 18:40:27 -0700 Subject: Bug 24896: Make the First/Last/Prev/Next navigation on bugs work with multiple buglists at once r=glob, a=mkanat --- Bugzilla/Template.pm | 9 --------- 1 file changed, 9 deletions(-) (limited to 'Bugzilla/Template.pm') diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index 274ed8847..00d7b6d28 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -764,15 +764,6 @@ sub create { # Whether or not keywords are enabled, in this Bugzilla. 'use_keywords' => sub { return Bugzilla::Keyword->any_exist; }, - 'last_bug_list' => sub { - my @bug_list; - my $cgi = Bugzilla->cgi; - if ($cgi->cookie("BUGLIST")) { - @bug_list = split(/:/, $cgi->cookie("BUGLIST")); - } - return \@bug_list; - }, - 'feature_enabled' => sub { return Bugzilla->feature(@_); }, # field_descs can be somewhat slow to generate, so we generate -- cgit v1.2.3-24-g4f1b