Browse Source

Merge pull request #562 from ProgerXP/patch-lang

Lang::__construct(): turn non-array $replacements into an array
Taylor Otwell 12 years ago
parent
commit
e256a66b18
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/lang.php

+ 1 - 1
laravel/lang.php

@@ -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;
 	}
 	}
 
 
 	/**
 	/**