From ae1acfddda92cd0ffb9897524c07b34d98563ba7 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 4 Aug 2011 17:40:16 -0500 Subject: [PATCH] adjusted front controller. --- public/index.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/public/index.php b/public/index.php index 350fb3ad..4b0819e8 100644 --- a/public/index.php +++ b/public/index.php @@ -18,6 +18,11 @@ // -------------------------------------------------------------- define('SYS_PATH', realpath($system = '../system').'/'); +// -------------------------------------------------------------- +// The path to the public directory. +// -------------------------------------------------------------- +define('PUBLIC_PATH', realpath(__DIR__).'/'); + // -------------------------------------------------------------- // The path to the packages directory. // -------------------------------------------------------------- @@ -33,11 +38,6 @@ // -------------------------------------------------------------- define('STORAGE_PATH', realpath('../storage').'/'); -// -------------------------------------------------------------- -// The path to the public directory. -// -------------------------------------------------------------- -define('PUBLIC_PATH', realpath(__DIR__).'/'); - // -------------------------------------------------------------- // The path to the directory containing the system directory. // --------------------------------------------------------------