Browse Source

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.
Mafoo 9 years ago
parent
commit
99b38d8bb0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      root.php

+ 1 - 1
root.php

@@ -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);