I found a problem with weblist.pl not separating languages properly
and fixed this.
This commit is contained in:
parent
1e8ee63e14
commit
46f2b08160
1 changed files with 3 additions and 1 deletions
|
@ -196,9 +196,11 @@ foreach my $campaign (@sorted) {
|
|||
my @lang = &wml::get_children($campaign,'translation');
|
||||
foreach my $lang (sort @lang) {
|
||||
if (!$first) {
|
||||
$trans .= ' ';
|
||||
$first = 0;
|
||||
}
|
||||
else {
|
||||
$trans .= ' ';
|
||||
}
|
||||
$trans .= $lang->{'attr'}->{'language'};
|
||||
}
|
||||
$trans =~ s/\001[^\003]*\003//g;
|
||||
|
|
Loading…
Add table
Reference in a new issue