aboutsummaryrefslogtreecommitdiffstats
path: root/mod/siteinfo.php
diff options
context:
space:
mode:
authorPaolo Tacconi <p.tacconi@giunti.it>2015-02-20 10:29:33 +0100
committerPaolo Tacconi <p.tacconi@giunti.it>2015-02-20 10:29:33 +0100
commit2765500844d7c85a6921f26cc708af8d967c9125 (patch)
tree5d894c8cb5e450c14563b408a9b9375e297dde93 /mod/siteinfo.php
parent5aad4a19f83a7e7de4ec9a7c819b9b5f7b4f1b3c (diff)
downloadvolse-hubzilla-2765500844d7c85a6921f26cc708af8d967c9125.tar.gz
volse-hubzilla-2765500844d7c85a6921f26cc708af8d967c9125.tar.bz2
volse-hubzilla-2765500844d7c85a6921f26cc708af8d967c9125.zip
Fixes to version tag in siteinfo/json
Diffstat (limited to 'mod/siteinfo.php')
-rw-r--r--mod/siteinfo.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/siteinfo.php b/mod/siteinfo.php
index b73dca5b1..e6798ce50 100644
--- a/mod/siteinfo.php
+++ b/mod/siteinfo.php
@@ -51,10 +51,10 @@ function siteinfo_init(&$a) {
$site_info = get_config('system','info');
$site_name = get_config('system','sitename');
if(! get_config('system','hidden_version_siteinfo')) {
- $version = sprintf( t('Version %s'), RED_VERSION );
+ $version = 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');
+ $commit = trim( @shell_exec('git log -1 --format="%h"'));
+ $tag = trim( @shell_exec('git describe --tags --abbrev=0'));
}
if(! isset($commit) || strlen($commit) > 16)
$commit = '';