diff options
author | lpsolit%gmail.com <> | 2005-11-19 10:20:04 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-11-19 10:20:04 +0100 |
commit | b1457ecffd7630f867974177c3f3313f4e08bb6b (patch) | |
tree | 0160732a3a0152e25f8c4e4b09f8ed3d1e3ca7e7 /template | |
parent | 383c59a7e4ef83e84864c764b123dccec681ca1d (diff) | |
download | bugzilla-b1457ecffd7630f867974177c3f3313f4e08bb6b.tar.gz bugzilla-b1457ecffd7630f867974177c3f3313f4e08bb6b.tar.xz |
Bug 87405: Change columns on stored query loses title - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=myk
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/list/list.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl index 5c2e0312a..01f7678fd 100644 --- a/template/en/default/list/list.html.tmpl +++ b/template/en/default/list/list.html.tmpl @@ -32,8 +32,8 @@ [% PROCESS global/variables.none.tmpl %] [% title = "$terms.Bug List" %] -[% IF searchname %] - [% title = title _ ": " _ searchname %] +[% IF searchname || defaultsavename %] + [% title = title _ ": " _ (searchname OR defaultsavename) FILTER html %] [% END %] [% style_urls = [ "skins/standard/buglist.css" ] %] |