Browse Source

Refactor the lang class.

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

+ 0 - 2
system/lang.php

@@ -100,8 +100,6 @@ class Lang {
 
 		if ($module != 'application') $key = substr($key, strpos($key, ':') + 2);
 
-		$segments = explode('.', $key);
-
 		if (count($segments = explode('.', $key)) > 1) return array($module, $segments[0], $segments[1]);
 
 		throw new \Exception("Invalid language line [$key]. A specific line must be specified.");