Patches bug #2308
authorFrederic Demians <f.demians@tamil.fr>
Fri, 4 Jul 2008 14:10:59 +0000 (16:10 +0200)
committerJoshua Ferraro <jmf@liblime.com>
Tue, 8 Jul 2008 20:00:28 +0000 (15:00 -0500)
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
edithelp.pl

index f9f3c00..5d236c2 100755 (executable)
@@ -63,14 +63,7 @@ sub _get_filepath ($;$) {
     $referer =~ /.*koha\/(.+)\.pl.*/;
     my $from   = "help/$1.tmpl";
     my $htdocs = C4::Context->config('intrahtdocs');
-       my ($theme, $lang);
-       # This split behavior was part of the old script.  I'm not sure why.  -atz
-       if (@_) {
-               ($theme, $lang) = themelanguage( $htdocs, $from, "intranet", $input );
-       } else {
-               $theme = C4::Context->preference('template');
-               $lang  = C4::Context->preference('language') || 'en';
-       }
+    my ($theme, $lang) = themelanguage( $htdocs, $from, "intranet", $input );
        $debug and print STDERR "help filepath: $htdocs/$theme/$lang/modules/$from";
        return "$htdocs/$theme/$lang/modules/$from";
 }