mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
changed throw Exception to die
nothing ever eval runs the root.php so changed to die to cause a immediate report of error and stop code processing.
This commit is contained in:
@@ -75,7 +75,7 @@
|
||||
$i++;
|
||||
}
|
||||
if(!file_exists($path. '/.project.ROOT')){
|
||||
throw new Exception("Failed to locate the Project Root by searching for .project.ROOT please contact support for assistance");
|
||||
die("Failed to locate the Project Root by searching for .project.ROOT please contact support for assistance");
|
||||
}
|
||||
$project_path = str_replace($_SERVER["DOCUMENT_ROOT"], "", $path);
|
||||
define('PROJECT_PATH', $project_path);
|
||||
|
||||
Reference in New Issue
Block a user