diff options
author | Sunil Joshi <joshi_sunil@in.com> | 2013-08-06 03:35:33 +0200 |
---|---|---|
committer | Simon Green <sgreen@redhat.com> | 2013-08-06 03:35:33 +0200 |
commit | 052096c990abfff963bfb8dda623157c48b0fe6a (patch) | |
tree | d879250b8efc7ae12b0af8f21b2722bb37d382be /template/en/default | |
parent | 4edafe5eef9864f0b6ebcd8ddbe639c78a814372 (diff) | |
download | bugzilla-052096c990abfff963bfb8dda623157c48b0fe6a.tar.gz bugzilla-052096c990abfff963bfb8dda623157c48b0fe6a.tar.xz |
Bug 467510 - Remove 'bug' from all page titles containing bug number
r=sgreen, a=sgreen
https://bugzilla.mozilla.org/show_bug.cgi?id=457510
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/bug/process/header.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/bug/show-header.html.tmpl | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/template/en/default/bug/process/header.html.tmpl b/template/en/default/bug/process/header.html.tmpl index f7f61a737..55de0c324 100644 --- a/template/en/default/bug/process/header.html.tmpl +++ b/template/en/default/bug/process/header.html.tmpl @@ -17,7 +17,7 @@ [% IF title_tag == "bug_processed" %] [% title = BLOCK %] [% IF Bugzilla.cgi.param('id') %] - [% terms.Bug %] [%+ id FILTER html %] + [%+ id FILTER html %] [% ELSE %] [% terms.Bugs %] [% END %] diff --git a/template/en/default/bug/show-header.html.tmpl b/template/en/default/bug/show-header.html.tmpl index f67bbf2f8..1aba5c35a 100644 --- a/template/en/default/bug/show-header.html.tmpl +++ b/template/en/default/bug/show-header.html.tmpl @@ -18,7 +18,7 @@ [% filtered_timestamp = bug.delta_ts FILTER time %] [% subheader = filtered_desc %] -[% title = "$terms.Bug $bug.bug_id – " %] +[% title = "$bug.bug_id – " %] [% IF bug.alias != '' %] [% title = title _ "($filtered_alias) " %] [% END %] @@ -28,7 +28,7 @@ [% IF bug.defined %] [% header = "$terms.Bug $bug.bug_id" %] [% header_addl_info = "Last modified: $filtered_timestamp" %] - [% unfiltered_title = "$terms.Bug $bug.bug_id – " %] + [% unfiltered_title = "$bug.bug_id – " %] [% IF bug.alias != '' %] [% unfiltered_title = unfiltered_title _ "($bug.alias) " %] [% END %] |