Browse Source

Refactor loader for performance.

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

+ 2 - 2
system/package.php

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