Browse Source

Refactor the package class.

Taylor Otwell 13 years ago
parent
commit
e3785ee7ff
1 changed files with 5 additions and 2 deletions
  1. 5 2
      system/package.php

+ 5 - 2
system/package.php

@@ -19,9 +19,12 @@ class Package {
 	{
 		foreach ((array) $packages as $package)
 		{
-			if (file_exists($bootstrap = PACKAGE_PATH.$package.'/bootstrap'.EXT)) require_once $bootstrap;
+			if (file_exists($bootstrap = PACKAGE_PATH.$package.'/bootstrap'.EXT))
+			{
+				require_once $bootstrap;
+			}
 
-			static::$loaded[] = $package;			
+			static::$loaded[] = $package;
 		}
 	}