Просмотр исходного кода

Added check for if .project.ROOT is missing

If a installation is missing the .project.ROOT previously it would just use the last search path as the project root (wrong) this will cause a Exception should it be unable to find it
Mafoo 9 лет назад
Родитель
Сommit
5770371d35
1 измененных файлов с 3 добавлено и 0 удалено
  1. 3 0
      root.php

+ 3 - 0
root.php

@@ -74,6 +74,9 @@
 				}
 				$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");
+			}
 			$project_path = str_replace($_SERVER["DOCUMENT_ROOT"], "", $path);
 			define('PROJECT_PATH', $project_path);
 		}