Browse Source

Refactoring the config class.

Taylor Otwell 13 years ago
parent
commit
5e28cd08b4
1 changed files with 1 additions and 3 deletions
  1. 1 3
      system/config.php

+ 1 - 3
system/config.php

@@ -79,9 +79,7 @@ class Config {
 
 
 		if ($module !== 'application') $key = substr($key, strpos($key, ':') + 2);
 		if ($module !== 'application') $key = substr($key, strpos($key, ':') + 2);
 
 
-		$segments = explode('.', $key);
-
-		$key = (count($segments) > 1) ? implode('.', array_slice($segments, 1)) : null;
+		$key = (count($segments = explode('.', $key)) > 1) ? implode('.', array_slice($segments, 1)) : null;
 
 
 		return array($module, $segments[0], $key);
 		return array($module, $segments[0], $key);
 	}
 	}