diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-12-03 17:09:05 -0800 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-12-03 17:09:05 -0800 |
commit | ca55bbdaed8c361fe9203c9823b67dd91f3b7741 (patch) | |
tree | f8ca3246f3d9e4934ea0791f44ad27afa5deeb51 /mod | |
parent | 366e735ad87c30cf6562e496e3e6a158148a035e (diff) | |
download | volse-hubzilla-ca55bbdaed8c361fe9203c9823b67dd91f3b7741.tar.gz volse-hubzilla-ca55bbdaed8c361fe9203c9823b67dd91f3b7741.tar.bz2 volse-hubzilla-ca55bbdaed8c361fe9203c9823b67dd91f3b7741.zip |
use the std_version where applicable instead of matching to the git.
Diffstat (limited to 'mod')
-rw-r--r-- | mod/siteinfo.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mod/siteinfo.php b/mod/siteinfo.php index 4c5782abe..52d014de1 100644 --- a/mod/siteinfo.php +++ b/mod/siteinfo.php @@ -1,8 +1,6 @@ <?php function siteinfo_init(&$a) { - - if (argv(1) === 'json') { $data = get_site_info(); json_return_and_die($data); @@ -17,7 +15,7 @@ function siteinfo_content(&$a) { $version = sprintf( t('Version %s'), RED_VERSION ); if(@is_dir('.git') && function_exists('shell_exec')) { $commit = @shell_exec('git log -1 --format="%h"'); - $tag = @shell_exec('git describe --tags --abbrev=0'); + $tag = get_std_version(); // @shell_exec('git describe --tags --abbrev=0'); } if(! isset($commit) || strlen($commit) > 16) $commit = ''; |