From 92a81752931c5fd7cdbf4b63305389844193d029 Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Mon, 7 May 2012 17:58:22 +0200 Subject: Bug 616191: Implement UI to easily tag bugs from the bug report directly (and get rid of the current form in the footer) r=timello a=LpSolit --- Bugzilla/Template.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Bugzilla/Template.pm') diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index 78c537cc3..e5bd8edb7 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -928,7 +928,9 @@ sub create { 'use_keywords' => sub { return Bugzilla::Keyword->any_exist; }, # All the keywords. - 'all_keywords' => sub { return Bugzilla::Keyword->get_all(); }, + 'all_keywords' => sub { + return [map { $_->name } Bugzilla::Keyword->get_all()]; + }, 'feature_enabled' => sub { return Bugzilla->feature(@_); }, -- cgit v1.2.3-24-g4f1b