From 8770473fd7c92d79a7abca72717fb4609a03b72b Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 24 Jun 2011 23:12:34 -0500 Subject: [PATCH] removed package class, added package_path constant. --- public/index.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/index.php b/public/index.php index 8e6a9e70..09dc52ec 100644 --- a/public/index.php +++ b/public/index.php @@ -17,10 +17,11 @@ define('LARAVEL_START', microtime(true)); // -------------------------------------------------------------- // Define the framework paths. // -------------------------------------------------------------- +define('BASE_PATH', realpath('../').'/'); define('APP_PATH', realpath('../application').'/'); define('SYS_PATH', realpath('../system').'/'); -define('BASE_PATH', realpath('../').'/'); define('PUBLIC_PATH', realpath(__DIR__.'/')); +define('PACKAGE_PATH', APP_PATH.'packages/'); // -------------------------------------------------------------- // Define the PHP file extension.