diff options
author | Matthew Noorenberghe <github@matthew.noorenberghe.com> | 2017-01-23 04:38:42 +0100 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-02-14 16:15:27 +0100 |
commit | 2e6f98dbf14a71f8197165f7df8fecde1b5555bf (patch) | |
tree | a5f4f7701253fd705fa05c514c2d8e91bb798dc3 | |
parent | 64794ccd5345a5c60a4e12ea43053c32d3aa92d8 (diff) | |
download | bugzilla-2e6f98dbf14a71f8197165f7df8fecde1b5555bf.tar.gz bugzilla-2e6f98dbf14a71f8197165f7df8fecde1b5555bf.tar.xz |
Bug 1332976 - Include quicksearch query string in the buglist.cgi HTML title. r=dylan
-rw-r--r-- | template/en/default/list/list.html.tmpl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl index 9cb3f1357..a4d516e6c 100644 --- a/template/en/default/list/list.html.tmpl +++ b/template/en/default/list/list.html.tmpl @@ -24,6 +24,8 @@ [% unfiltered_title = "$terms.Bug List" %] [% IF searchname || defaultsavename %] [% unfiltered_title = unfiltered_title _ ": " _ (searchname OR defaultsavename) %] +[% ELSIF quicksearch %] + [% unfiltered_title = unfiltered_title _ ": " _ quicksearch %] [% END %] [% title = unfiltered_title FILTER html %] |