Browse Source

another ' missing $query arg to themelanguage()' call

Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
3.0.x
Mason James 17 years ago
committed by Joshua Ferraro
parent
commit
9277b9e55d
  1. 2
      edithelp.pl

2
edithelp.pl

@ -97,7 +97,7 @@ elsif ( $type eq 'modify' ) {
$referer =~ /.*koha\/(.*)\.pl.*/;
my $from = "help/$1.tmpl";
my $htdocs = C4::Context->config('intrahtdocs');
my ( $theme, $lang ) = themelanguage( $htdocs, $from, "intranet" );
my ( $theme, $lang ) = themelanguage( $htdocs, $from, "intranet", $input );
eval {
open( INFILE, "$htdocs/$theme/$lang/modules/$from" ) || die "Can't open file";
};

Loading…
Cancel
Save