1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-30 12:30:52 +02:00
ttrss/include/version.php

20 lines
444 B
PHP
Raw Normal View History

2006-08-19 09:04:45 +02:00
<?php
2014-12-08 13:02:51 +01:00
define('VERSION_STATIC', '1.15');
2013-04-23 18:22:55 +02:00
function get_version() {
2013-04-24 06:56:37 +02:00
date_default_timezone_set('UTC');
2013-04-23 18:22:55 +02:00
$root_dir = dirname(dirname(__FILE__));
2013-06-26 15:20:03 +02:00
if (is_dir("$root_dir/.git") && file_exists("$root_dir/.git/refs/heads/master")) {
2013-04-23 18:22:55 +02:00
2013-06-26 15:20:03 +02:00
$suffix = substr(trim(file_get_contents("$root_dir/.git/refs/heads/master")), 0, 7);
2013-04-23 18:22:55 +02:00
return VERSION_STATIC . ".$suffix";
} else {
return VERSION_STATIC;
}
}
define('VERSION', get_version());
2005-08-25 16:01:20 +02:00
?>