diff options
author | friendica <info@friendica.com> | 2015-03-20 16:46:07 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-03-20 16:46:07 -0700 |
commit | 01716dea3d930e6c6b7dd20d5aa6a7fe94db16d1 (patch) | |
tree | 6edef08b5c5cb2f0ff79269745d45fc58d05b589 /mod/siteinfo.php | |
parent | 274a30f2dbb31cd0b0987846b64345027aad20d0 (diff) | |
download | volse-hubzilla-01716dea3d930e6c6b7dd20d5aa6a7fe94db16d1.tar.gz volse-hubzilla-01716dea3d930e6c6b7dd20d5aa6a7fe94db16d1.tar.bz2 volse-hubzilla-01716dea3d930e6c6b7dd20d5aa6a7fe94db16d1.zip |
config to hide version tag from siteinfo - on my site it's meaningless.
Diffstat (limited to 'mod/siteinfo.php')
-rw-r--r-- | mod/siteinfo.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/siteinfo.php b/mod/siteinfo.php index e6798ce50..b69c56ecb 100644 --- a/mod/siteinfo.php +++ b/mod/siteinfo.php @@ -54,7 +54,8 @@ function siteinfo_init(&$a) { $version = RED_VERSION; if(@is_dir('.git') && function_exists('shell_exec')) { $commit = trim( @shell_exec('git log -1 --format="%h"')); - $tag = trim( @shell_exec('git describe --tags --abbrev=0')); + if(! get_config('system','hidden_tag_siteinfo')) + $tag = trim( @shell_exec('git describe --tags --abbrev=0')); } if(! isset($commit) || strlen($commit) > 16) $commit = ''; |