diff options
author | Kohei Yoshino <kohei.yoshino@gmail.com> | 2017-12-02 16:43:01 +0100 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-12-02 16:43:01 +0100 |
commit | cea1ba1953ef1dab6c50f3237db9e858d3a55439 (patch) | |
tree | b096dc612d25edeba659ae635b6c4fbc1481ae4c /template | |
parent | 95203b7664ccefac00ad1f05a62d2178f6573dd0 (diff) | |
download | bugzilla-cea1ba1953ef1dab6c50f3237db9e858d3a55439.tar.gz bugzilla-cea1ba1953ef1dab6c50f3237db9e858d3a55439.tar.xz |
Bug 1420295 - Remove the Bugzilla version number from homepage
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/show-header.html.tmpl | 1 | ||||
-rw-r--r-- | template/en/default/global/header.html.tmpl | 10 | ||||
-rw-r--r-- | template/en/default/index.html.tmpl | 1 | ||||
-rw-r--r-- | template/en/default/reports/chart.html.tmpl | 1 | ||||
-rw-r--r-- | template/en/default/reports/report.html.tmpl | 1 | ||||
-rw-r--r-- | template/en/default/welcome-admin.html.tmpl | 1 |
6 files changed, 1 insertions, 14 deletions
diff --git a/template/en/default/bug/show-header.html.tmpl b/template/en/default/bug/show-header.html.tmpl index 2fbc7ef51..6308098b5 100644 --- a/template/en/default/bug/show-header.html.tmpl +++ b/template/en/default/bug/show-header.html.tmpl @@ -40,7 +40,6 @@ [% title = title _ filtered_desc %] [% generate_api_token = 1 %] [% header = "$terms.Bug $bug.bug_id" %] -[% header_addl_info = "Last modified: $filtered_timestamp" %] [% javascript_urls = [ "js/util.js", "js/field.js" ] %] [% javascript_urls.push("js/bug.js") IF user.id %] [% javascript_urls.push('js/comment-tagging.js') diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl index 6d5d54a48..90cdbd4e8 100644 --- a/template/en/default/global/header.html.tmpl +++ b/template/en/default/global/header.html.tmpl @@ -26,7 +26,6 @@ # title: string. Page title. # header: string. Main page header. # subheader: string. Page subheader. - # header_addl_info: string. Additional header information. # bodyclasses: array of extra CSS classes for the <body> # onload: string. JavaScript code to run when the page finishes loading. # javascript: string. Javascript to go in the header. @@ -48,7 +47,6 @@ [% DEFAULT subheader = "" - header_addl_info = "" onload = "" style_urls = [] no_yui = 0 @@ -126,6 +124,7 @@ END; %] + <meta name="generator" content="[% terms.Bugzilla _ " " _ constants.BUGZILLA_VERSION FILTER html %]"> <meta name="bugzilla-global" content="dummy" id="bugzilla-global" data-bugzilla="[% json_encode(js_BUGZILLA) FILTER html %]"> <title>[% title %]</title> @@ -331,13 +330,6 @@ </tr> </table> - [%# display the version number on the index page %] - [% IF title == "$terms.Bugzilla Main Page" %] - <div id="bugzilla_version"> - [% header_addl_info FILTER html %] - </div> - [% END %] - [% PROCESS "global/common-links.html.tmpl" qs_suffix = "_top" %] </div> diff --git a/template/en/default/index.html.tmpl b/template/en/default/index.html.tmpl index 70c3d7f3e..4e56caa7f 100644 --- a/template/en/default/index.html.tmpl +++ b/template/en/default/index.html.tmpl @@ -28,7 +28,6 @@ [% PROCESS global/header.html.tmpl title = "$terms.Bugzilla Main Page" header = "Main Page" - header_addl_info = "version " _ bugzilla_version style_urls = [ 'skins/standard/index.css' ] no_yui = 1 %] diff --git a/template/en/default/reports/chart.html.tmpl b/template/en/default/reports/chart.html.tmpl index e14744d31..a927c382d 100644 --- a/template/en/default/reports/chart.html.tmpl +++ b/template/en/default/reports/chart.html.tmpl @@ -29,7 +29,6 @@ [% PROCESS global/header.html.tmpl title = "Chart" - header_addl_info = time %] <div align="center"> diff --git a/template/en/default/reports/report.html.tmpl b/template/en/default/reports/report.html.tmpl index deb570202..c70f3de13 100644 --- a/template/en/default/reports/report.html.tmpl +++ b/template/en/default/reports/report.html.tmpl @@ -76,7 +76,6 @@ .t4 { background-color: #c3d3ed } /* darker blue */ .ttotal, .ttotal td { background-color: #cfffdf } /* light green */ " - header_addl_info = time %] [% IF debug %] diff --git a/template/en/default/welcome-admin.html.tmpl b/template/en/default/welcome-admin.html.tmpl index 289a6bd7d..e37008fc7 100644 --- a/template/en/default/welcome-admin.html.tmpl +++ b/template/en/default/welcome-admin.html.tmpl @@ -23,7 +23,6 @@ [% PROCESS global/header.html.tmpl title = title - header_addl_info = "version $constants.BUGZILLA_VERSION" style_urls = [ 'skins/standard/index.css' ] %] |