diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2016-02-22 23:09:20 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2016-02-22 23:09:20 +0100 |
commit | b241244b33f920514c2a84a0c98279aa7158f200 (patch) | |
tree | a659b5f508ddfbf02a1fc4234e7147033987b3c7 | |
parent | b33684a1b5b74c6b2a7cd4c79ab8e944d31ffad7 (diff) | |
download | bugs-b241244b33f920514c2a84a0c98279aa7158f200.tar bugs-b241244b33f920514c2a84a0c98279aa7158f200.tar.gz bugs-b241244b33f920514c2a84a0c98279aa7158f200.tar.bz2 bugs-b241244b33f920514c2a84a0c98279aa7158f200.tar.xz bugs-b241244b33f920514c2a84a0c98279aa7158f200.zip |
Bug 1250264: Extensions have no easy way to override favicon.ico
r/a=dkl
-rw-r--r-- | template/en/default/global/header.html.tmpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl index 4d226fd73..bd40fff88 100644 --- a/template/en/default/global/header.html.tmpl +++ b/template/en/default/global/header.html.tmpl @@ -35,6 +35,7 @@ javascript_urls = [] yui = [] generate_api_token = 0 + favicon_url = "images/favicon.ico" %] [% SET yui_css = { @@ -208,7 +209,7 @@ [%# Required for the 'Autodiscovery' feature in Firefox 2 and IE 7. %] <link rel="search" type="application/opensearchdescription+xml" title="[% terms.Bugzilla %]" href="./search_plugin.cgi"> - <link rel="shortcut icon" href="images/favicon.ico" > + <link rel="shortcut icon" href="[% favicon_url FILTER html %]"> [% Hook.process("additional_header") %] </head> |