Fix the fix of the typo ... ARGH

This commit is contained in:
phl0 2017-04-12 16:43:12 +02:00
parent 7dacd2f98c
commit e2cf12ea88
No known key found for this signature in database
GPG key ID: 48EA1E640798CA9A

View file

@ -824,7 +824,7 @@ function decodeAlias($logLine) {
function getGitVersion(){
if (file_exists(".git")) {
exec("git rev-parse --short HEAD", $output);
return 'GitID #<a href="https://github.com/dg9vh/MMDVMHost-Dashboard/commit/'.$output[0]."' target="_blank">'.$output[0].'</a>';
return 'GitID #<a href="https://github.com/dg9vh/MMDVMHost-Dashboard/commit/'.$output[0].'" target="_blank">'.$output[0].'</a>';
} else {
return 'GitID unknown';
}