Lang::__construct() now converts $replacements into an array.

Signed-off-by: Pavel <[email protected]>
This commit is contained in:
Pavel
2012-04-19 23:40:38 +04:00
parent 1192abe39c
commit 5019d05ed2
+1 -1
View File
@@ -51,7 +51,7 @@ class Lang {
{ {
$this->key = $key; $this->key = $key;
$this->language = $language; $this->language = $language;
$this->replacements = $replacements; $this->replacements = (array) $replacements;
} }
/** /**