Browse Source

Bug 21395: Fix creation of PO file

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
20.11.x
Julian Maurice 4 years ago
committed by Jonathan Druart
parent
commit
133a3ef168
  1. 2
      misc/translator/tmpl_process3.pl

2
misc/translator/tmpl_process3.pl

@ -379,7 +379,7 @@ if ($action eq 'create') {
open(my $infh, '<', $tmpfile2);
open(my $outfh, '>', $str_file);
while (<$infh>) {
print $outfh;
print $outfh $_;
last if /^\n/s;
}
close $infh;

Loading…
Cancel
Save