summaryrefslogtreecommitdiffstats
path: root/defparams.pl
diff options
context:
space:
mode:
Diffstat (limited to 'defparams.pl')
-rw-r--r--defparams.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/defparams.pl b/defparams.pl
index 0727364e6..8c1d93917 100644
--- a/defparams.pl
+++ b/defparams.pl
@@ -150,13 +150,13 @@ sub check_loginmethod {
}
sub check_languages {
- my @languages = split /,/, trim($_);
+ my @languages = split /[,\s]+/, trim($_[0]);
if(!scalar(@languages)) {
return "You need to specify a language tag."
}
foreach my $language (@languages) {
- if( ! -d 'template/'.trim($language).'/custom'
- && ! -d 'template/'.trim($language).'/default') {
+ if( ! -d "template/$language/custom"
+ && ! -d "template/$language/default") {
return "The template directory for $language does not exist";
}
}