Browse Source

check for strict false in config class.

Taylor Otwell 14 years ago
parent
commit
c8be377d5a
1 changed files with 1 additions and 2 deletions
  1. 1 2
      system/config.php

+ 1 - 2
system/config.php

@@ -21,10 +21,9 @@ class Config {
 		// If a dot is not present, we will just return the
 		// entire configuration array.
 		// -----------------------------------------------------
-		if(strpos($key, '.') == 0)
+		if(strpos($key, '.') === false)
 		{
 			static::load($key);
-
 			return static::$items[$key];
 		}