From 879e5ffd35b4be791d4b29c73b62130dc8155c6b 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. --- C4/Koha.pm | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/Koha.pm b/C4/Koha.pm index 976b46a..43bfdf5 100644 --- a/C4/Koha.pm +++ b/C4/Koha.pm @@ -452,7 +452,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'; } } @@ -461,7 +461,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'; } } -- 1.7.2.5