remove unnecessary application variable.

This commit is contained in:
Taylor Otwell
2011-07-28 08:58:32 -05:00
parent 28fbd35491
commit c3c7084d72

View File

@@ -11,7 +11,7 @@
// --------------------------------------------------------------
// The path to the application directory.
// --------------------------------------------------------------
define('APP_PATH', realpath($application = '../application').'/');
define('APP_PATH', realpath('../application').'/');
// --------------------------------------------------------------
// The path to the system directory.
@@ -47,7 +47,7 @@ foreach ($constants as $key => $value)
define($key, $value);
}
unset($constants, $application, $system);
unset($constants, $system);
// --------------------------------------------------------------
// Define the PHP file extension.