Browse Source

Refactoring the Lang class.

Taylor Otwell 13 years ago
parent
commit
bc0e706c02
1 changed files with 2 additions and 7 deletions
  1. 2 7
      system/lang.php

+ 2 - 7
system/lang.php

@@ -61,7 +61,7 @@ class Lang {
 	 * @param  mixed   $default
 	 * @return string
 	 */
-	public function get($language = null, $default = null)
+	public function get($language = null, $default = '')
 	{
 		if (is_null($language))
 		{
@@ -72,12 +72,7 @@ class Lang {
 
 		$this->load($file, $language);
 
-		if ( ! isset(static::$lines[$language.$file][$line]))
-		{
-			return is_callable($default) ? call_user_func($default) : $default;
-		}
-
-		$line = static::$lines[$language.$file][$line];
+		$line = Arr::get(static::$lines[$language.$file], $line, $default);
 
 		foreach ($this->replacements as $key => $value)
 		{