diff options
author | Sunil Joshi <joshi_sunil@in.com> | 2013-01-02 01:23:52 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2013-01-02 01:23:52 +0100 |
commit | 4859458f354f5634c9f2ac81bccf75329ad67eb1 (patch) | |
tree | 3f783e299959dc2ce85d95568b2be018a62356c2 | |
parent | fix typo (diff) | |
download | bugzilla-4859458f354f5634c9f2ac81bccf75329ad67eb1.tar.gz bugzilla-4859458f354f5634c9f2ac81bccf75329ad67eb1.tar.bz2 bugzilla-4859458f354f5634c9f2ac81bccf75329ad67eb1.zip |
Bug 685607: When a user edits the last bug of a buglist and his user pref is set to "Show next bug in my list", the page header looks like to have missing data
r/a=LpSolit
-rw-r--r-- | template/en/default/bug/show-header.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/bug/show-header.html.tmpl b/template/en/default/bug/show-header.html.tmpl index 93ddc94f1..a1eebe017 100644 --- a/template/en/default/bug/show-header.html.tmpl +++ b/template/en/default/bug/show-header.html.tmpl @@ -17,11 +17,11 @@ [% subheader = filtered_desc %] [% filtered_timestamp = bug.delta_ts FILTER time %] [% title = "$terms.Bug $bug.bug_id – $filtered_desc" %] -[% header = "$terms.Bug $bug.bug_id" %] -[% header_addl_info = "Last modified: $filtered_timestamp" %] [% yui = ['autocomplete', 'calendar'] %] [% javascript_urls = [ "js/util.js", "js/field.js" ] %] [% IF bug.defined %] + [% header = "$terms.Bug $bug.bug_id" %] + [% header_addl_info = "Last modified: $filtered_timestamp" %] [% unfiltered_title = "$terms.Bug $bug.bug_id – $bug.short_desc" %] [% javascript = BLOCK %] if (history && history.replaceState) { |