diff options
author | Matthew N <MattN+bmo@mozilla.com> | 2017-01-27 05:21:05 +0100 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-01-27 05:21:24 +0100 |
commit | 1d7bfbbc516fea853ba5f3bf35fd60a8f26304bc (patch) | |
tree | d9eda25283571bddf0da1a514570fade23450c24 /template/en/default | |
parent | e3209457f2d4a6a134d73d0f0e5069ccfc8f88d0 (diff) | |
download | bugzilla-1d7bfbbc516fea853ba5f3bf35fd60a8f26304bc.tar.gz bugzilla-1d7bfbbc516fea853ba5f3bf35fd60a8f26304bc.tar.xz |
Bug 1333942 - Include quicksearch query string in the buglist.cgi HTML title
Diffstat (limited to 'template/en/default')
-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 d825cf9ce..5e154f5df 100644 --- a/template/en/default/list/list.html.tmpl +++ b/template/en/default/list/list.html.tmpl @@ -33,6 +33,8 @@ [% title = "$terms.Bug List" %] [% IF searchname || defaultsavename %] [% title = title _ ": " _ (searchname OR defaultsavename) FILTER html %] +[% ELSIF quicksearch %] + [% title = title _ ": " _ quicksearch FILTER html %] [% END %] [% qorder = order FILTER uri IF order %] |