diff --git a/system/package.php b/system/package.php index 9b8721bf..e9586f2c 100644 --- a/system/package.php +++ b/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; } }