diff options
author | friendica <info@friendica.com> | 2015-03-20 16:49:49 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-03-20 16:49:49 -0700 |
commit | 96afe7bf425ae5d2096f078358e174b29365c0f2 (patch) | |
tree | b9cb011dab367377693788431cc7c88828ff0d08 /mod/siteinfo.php | |
parent | 07f8e7049a3f7ccf6c131beb805163a27a5aa886 (diff) | |
download | volse-hubzilla-96afe7bf425ae5d2096f078358e174b29365c0f2.tar.gz volse-hubzilla-96afe7bf425ae5d2096f078358e174b29365c0f2.tar.bz2 volse-hubzilla-96afe7bf425ae5d2096f078358e174b29365c0f2.zip |
set to empty string so it doesn't get mis-handled as a null
Diffstat (limited to 'mod/siteinfo.php')
-rw-r--r-- | mod/siteinfo.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mod/siteinfo.php b/mod/siteinfo.php index b69c56ecb..2ad9f7cde 100644 --- a/mod/siteinfo.php +++ b/mod/siteinfo.php @@ -56,6 +56,8 @@ function siteinfo_init(&$a) { $commit = trim( @shell_exec('git log -1 --format="%h"')); if(! get_config('system','hidden_tag_siteinfo')) $tag = trim( @shell_exec('git describe --tags --abbrev=0')); + else + $tag = ''; } if(! isset($commit) || strlen($commit) > 16) $commit = ''; |