Fix version in preferences footer
This commit is contained in:
parent
72f133bb06
commit
3cda9e2a40
|
@ -5,9 +5,9 @@
|
||||||
date_default_timezone_set('UTC');
|
date_default_timezone_set('UTC');
|
||||||
$root_dir = dirname(dirname(__FILE__));
|
$root_dir = dirname(dirname(__FILE__));
|
||||||
|
|
||||||
if (is_dir("$root_dir/.git") && file_exists("$root_dir/.git/ORIG_HEAD")) {
|
if (is_dir("$root_dir/.git") && file_exists("$root_dir/.git/refs/heads/master")) {
|
||||||
|
|
||||||
$suffix = substr(trim(file_get_contents("$root_dir/.git/ORIG_HEAD")), 0, 7);
|
$suffix = substr(trim(file_get_contents("$root_dir/.git/refs/heads/master")), 0, 7);
|
||||||
|
|
||||||
return VERSION_STATIC . ".$suffix";
|
return VERSION_STATIC . ".$suffix";
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue