]> git.koha-community.org Git - koha.git/commit
Bug 8737 - Incorrect icon at login in staff client
authorMark Tompsett <mtompset@hotmail.com>
Fri, 7 Sep 2012 05:34:04 +0000 (13:34 +0800)
committerChris Cormack <chris@bigballofwax.co.nz>
Sat, 20 Apr 2013 23:14:02 +0000 (11:14 +1200)
commit854a4525d87cd3dc6dcaa9d5d265dfdad95d9e8f
treec1e0d02c8ebfbf26e57c85a85c82a0701c97fcf3
parent5634fc955de5efaa2974b47888401a686ff4c855
Bug 8737 - Incorrect icon at login in staff client

Added the following missing code to ensure the correct icon
is used when logged out:
   IntranetFavicon => C4::Context->preference('IntranetFavicon')
This was added into an existing $template->param() call.

Not to be confused with the koha logo on the login page, the
icon is a 16x16 pixel graphic in the browser tab. The default
is found at .../intranet-tmpl/prog/en/includes/favicon.ico.

If the "IntranetFavicon" system preference is set, it should be
used by the staff client regardless of login state. It was not
being used in the "AUTH rejected" section of Auth.pm, but the
OpacFavicon variable was being set. This explains why the
"OpacFavicon" system preference works for the OPAC client, but
not the staff client upon logout.

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
C4/Auth.pm