I found a problem with weblist.pl not separating languages properly

and fixed this.
This commit is contained in:
Bruno Wolff III 2005-10-11 02:03:31 +00:00
parent 1e8ee63e14
commit 46f2b08160

View file

@ -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;