summaryrefslogtreecommitdiff
path: root/include/version.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-02-03 14:39:15 +0300
committerAndrew Dolgov <[email protected]>2015-02-03 14:39:15 +0300
commitefcc5d365db4d1b0f3a26098011319daf50e018e (patch)
tree503d6ea0a5fe577f1bb19f9fbc2727cd7128daa6 /include/version.php
parent47cdc58c6065c997b03c311fa6c1d0ebf6b19690 (diff)
add placeholder update checker using git changesets
Diffstat (limited to 'include/version.php')
-rw-r--r--include/version.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/version.php b/include/version.php
index a7ca8a32b..34c11e6e7 100644
--- a/include/version.php
+++ b/include/version.php
@@ -8,6 +8,10 @@
if (is_dir("$root_dir/.git") && file_exists("$root_dir/.git/refs/heads/master")) {
$suffix = substr(trim(file_get_contents("$root_dir/.git/refs/heads/master")), 0, 7);
+ $timestamp = filemtime("$root_dir/.git/refs/heads/master");
+
+ define("GIT_VERSION_HEAD", $suffix);
+ define("GIT_VERSION_TIMESTAMP", $timestamp);
return VERSION_STATIC . ".$suffix";
} else {