From c2d486e4246e249480d4cd0d78895d0017b41e46 Mon Sep 17 00:00:00 2001 From: David Cook <dcook@prosentient.com.au> Date: Mon, 19 Feb 2018 10:11:29 +1100 Subject: [PATCH] Bug 20173: Fix favicon.ico path in installer This patch corrects the favicon.ico path for the installer. On git installs, it used to point to ./koha-tmpl/favicon.ico, and on regular installs, it probably just didn't work. https://bugs.koha-community.org/show_bug.cgi?id=20173 Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> --- koha-tmpl/intranet-tmpl/prog/en/includes/installer-doc-head-close.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/installer-doc-head-close.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/installer-doc-head-close.inc index 16de754..87229c2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/installer-doc-head-close.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/installer-doc-head-close.inc @@ -1,5 +1,5 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> -<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" /> +<link rel="shortcut icon" href="[% IF ( IntranetFavicon ) %][% IntranetFavicon %][% ELSE %][% interface %]/[% theme %]/img/favicon.ico[% END %]" type="image/x-icon" /> <link rel="stylesheet" type="text/css" href="[% interface %]/lib/jquery/jquery-ui-1.11.4.min.css" /> <link rel="stylesheet" type="text/css" href="[% interface %]/lib/bootstrap/bootstrap.min.css" /> <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/installer.css" /> -- 2.1.4