diff --git a/app/system/system.php b/app/system/system.php index 510f1aa4eb..84fa5e9ac6 100644 --- a/app/system/system.php +++ b/app/system/system.php @@ -86,22 +86,24 @@ $document['title'] = $text['title-sys-status']; echo "\n"; $git_path = normalize_path_to_os($_SERVER["DOCUMENT_ROOT"]."/.git"); - $git_branch = shell_exec('git --git-dir='.$git_path.' name-rev --name-only HEAD'); - rtrim($git_branch); - $git_commit = shell_exec('git --git-dir='.$git_path.' rev-parse HEAD'); - rtrim($git_commit); - $git_origin = shell_exec('git --git-dir='.$git_path.' config --get remote.origin.url'); - rtrim($git_commit); - echo "\n"; - echo " \n"; - echo " ".$text['label-git_info']."\n"; - echo " \n"; - echo " \n"; - echo " ".$text['label-git_branch']." ".$git_branch."
\n"; - echo " ".$text['label-git_commit']." ".$git_commit."
\n"; - echo " ".$text['label-git_origin']." ".$git_origin."
\n"; - echo " \n"; - echo "\n"; + if(file_exists($git_path)){ + $git_branch = shell_exec('git --git-dir='.$git_path.' name-rev --name-only HEAD'); + rtrim($git_branch); + $git_commit = shell_exec('git --git-dir='.$git_path.' rev-parse HEAD'); + rtrim($git_commit); + $git_origin = shell_exec('git --git-dir='.$git_path.' config --get remote.origin.url'); + rtrim($git_commit); + echo "\n"; + echo " \n"; + echo " ".$text['label-git_info']."\n"; + echo " \n"; + echo " \n"; + echo " ".$text['label-git_branch']." ".$git_branch."
\n"; + echo " ".$text['label-git_commit']." ".$git_commit."
\n"; + echo " ".$text['label-git_origin']." ".$git_origin."
\n"; + echo " \n"; + echo "\n"; + } echo "