From f0d284e6bde91f4393840184790827ea541457ee Mon Sep 17 00:00:00 2001 From: arensb Date: Sat, 5 Oct 2002 16:48:08 +0000 Subject: [PATCH] Removed remnants of code that read /etc/koha.conf for itself. --- C4/Output.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/Output.pm b/C4/Output.pm index ebe5cc21ef..40e78f0aab 100644 --- a/C4/Output.pm +++ b/C4/Output.pm @@ -102,9 +102,9 @@ sub gettemplate { my $htdocs; if ($opac) { - $htdocs = $configfile->{'opachtdocs'}; + $htdocs = C4::Context->config('opachtdocs'); } else { - $htdocs = $configfile->{'intrahtdocs'}; + $htdocs = C4::Context->config('intrahtdocs'); } my ($theme, $lang) = themelanguage($htdocs, $tmplbase); -- 2.20.1