@@ -, +, @@ --- edithelp.pl | 3 ++- help.pl | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) --- a/edithelp.pl +++ a/edithelp.pl @@ -19,6 +19,7 @@ use strict; use C4::Output; +use C4::Templates; use C4::Auth; use CGI; use warnings; @@ -66,7 +67,7 @@ sub _get_filepath ($;$) { $referer =~ /koha\/(.*)\.pl/; my $from = "help/$1.tt"; my $htdocs = C4::Context->config('intrahtdocs'); - my ($theme, $lang) = themelanguage( $htdocs, $from, "intranet", $input ); + my ($theme, $lang) = C4::Templates::themelanguage( $htdocs, $from, "intranet", $input ); $debug and print STDERR "help filepath: $htdocs/$theme/$lang/modules/$from"; return "$htdocs/$theme/$lang/modules/$from"; } --- a/help.pl +++ a/help.pl @@ -35,10 +35,10 @@ $refer =~ /koha\/(.*)\.pl/; my $from = "modules/help/$1.tt"; my $htdocs = C4::Context->config('intrahtdocs'); -my ( $theme, $lang ) = themelanguage( $htdocs, $from, "intranet", $query ); +my ( $theme, $lang ) = C4::Templates::themelanguage( $htdocs, $from, "intranet", $query ); unless ( -e "$htdocs/$theme/$lang/$from" ) { $from = "modules/help/nohelp.tt"; - ( $theme, $lang ) = themelanguage( $htdocs, $from, "intranet", $query ); + ( $theme, $lang ) = C4::Templates::themelanguage( $htdocs, $from, "intranet", $query ); } my $template = C4::Templates->new('intranet', "$htdocs/$theme/$lang/$from"); $template->param( referer => $refer ); --