diff options
Diffstat (limited to 'Bugzilla/Template.pm')
-rw-r--r-- | Bugzilla/Template.pm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index 22ea4b7cc..d897cd946 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -756,7 +756,15 @@ 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; + }, # These don't work as normal constants. DB_MODULE => \&Bugzilla::Constants::DB_MODULE, |