Browse Source

Fixed laravel path bug
Affects installations where laravel is in a submodule named laravel.

Phill Sparks 13 years ago
parent
commit
58807cc5a6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/bootstrap/core.php

+ 1 - 1
laravel/bootstrap/core.php

@@ -9,7 +9,7 @@ define('EXT', '.php');
 define('BLADE_EXT', '.blade.php');
 define('BLADE_EXT', '.blade.php');
 
 
 define('APP_PATH',        realpath($application).'/');
 define('APP_PATH',        realpath($application).'/');
-define('BASE_PATH',       realpath(str_replace('laravel', '', $laravel)).'/');
+define('BASE_PATH',       realpath("$laravel/..").'/');
 define('PACKAGE_PATH',    realpath($packages).'/');
 define('PACKAGE_PATH',    realpath($packages).'/');
 define('PUBLIC_PATH',     realpath($public).'/');
 define('PUBLIC_PATH',     realpath($public).'/');
 define('STORAGE_PATH',    realpath($storage).'/');
 define('STORAGE_PATH',    realpath($storage).'/');