summaryrefslogtreecommitdiff
path: root/include/version.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/version.php')
-rw-r--r--include/version.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/version.php b/include/version.php
index 8d7cf2de7..34c11e6e7 100644
--- a/include/version.php
+++ b/include/version.php
@@ -1,5 +1,5 @@
<?php
- define('VERSION_STATIC', '1.13');
+ define('VERSION_STATIC', '1.15.3');
function get_version() {
date_default_timezone_set('UTC');
@@ -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 {