Merge pull request #562 from ProgerXP/patch-lang
Lang::__construct(): turn non-array $replacements into an array
This commit is contained in:
@@ -51,7 +51,7 @@ class Lang {
|
||||
{
|
||||
$this->key = $key;
|
||||
$this->language = $language;
|
||||
$this->replacements = $replacements;
|
||||
$this->replacements = (array) $replacements;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user