Locale - richtigen Filehandle für Menüübersetzungen benutzen
authorG. Richardson <information@kivitendo-premium.de>
Fri, 31 Jul 2015 08:00:31 +0000 (10:00 +0200)
committerG. Richardson <information@kivitendo-premium.de>
Fri, 31 Jul 2015 08:00:31 +0000 (10:00 +0200)
SL/Locale.pm

index 4198a33..25e8043 100644 (file)
@@ -95,7 +95,7 @@ sub _init {
       for my $file (@files) {
         if (open my $in, "<", "locale/$country/more/$file") {
           local $/ = undef;
-          my $code = <$file>;
+          my $code = <$in>;
           eval($code);
           close($in);
           $self->{texts}{$_} = $self->{more_texts}{$_} for keys %{ $self->{more_texts} };