Browse Source

refactoring lang class.

Taylor Otwell 13 years ago
parent
commit
0cc0b7ac97
1 changed files with 1 additions and 4 deletions
  1. 1 4
      system/lang.php

+ 1 - 4
system/lang.php

@@ -63,10 +63,7 @@ class Lang {
 	 */
 	public function get($language = null, $default = null)
 	{
-		if (is_null($language))
-		{
-			$language = Config::get('application.language');
-		}
+		if (is_null($language)) $language = Config::get('application.language');
 
 		list($module, $file, $line) = $this->parse($this->key, $language);