From 678a38ed409f7e7875acabd419578c18f4882607 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Wed, 22 Feb 2012 10:08:24 -0500 Subject: [PATCH] Bug 7579 - Icons for authorized values/item types not showing in OPAC The functions getitemtypeimagedir and getitemtypeimagesrc in Koha.pm were using the system preference 'template' when they should be using 'opacthemes' instead. Signed-off-by: Julian Maurice Signed-off-by: Paul Poulain Signed-off-by: Jared Camins-Esakov --- C4/Koha.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/Koha.pm b/C4/Koha.pm index 32cc26050e..db3631ae28 100644 --- a/C4/Koha.pm +++ b/C4/Koha.pm @@ -455,7 +455,7 @@ sub getitemtypeimagedir { if ($src eq 'intranet') { return C4::Context->config('intrahtdocs') . '/' .C4::Context->preference('template') . '/img/itemtypeimg'; } else { - return C4::Context->config('opachtdocs') . '/' . C4::Context->preference('template') . '/itemtypeimg'; + return C4::Context->config('opachtdocs') . '/' . C4::Context->preference('opacthemes') . '/itemtypeimg'; } } @@ -464,7 +464,7 @@ sub getitemtypeimagesrc { if ($src eq 'intranet') { return '/intranet-tmpl' . '/' . C4::Context->preference('template') . '/img/itemtypeimg'; } else { - return '/opac-tmpl' . '/' . C4::Context->preference('template') . '/itemtypeimg'; + return '/opac-tmpl' . '/' . C4::Context->preference('opacthemes') . '/itemtypeimg'; } } -- 2.39.5