From a90a0874b869071d370d8a65acc5d16231eb903d Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 8 Sep 2016 22:56:51 -0700 Subject: fix for old style version specifiers --- Zotlabs/Module/Pubsites.php | 5 +++++ include/zot.php | 3 --- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Zotlabs/Module/Pubsites.php b/Zotlabs/Module/Pubsites.php index a66fd9c7a..1c9cd5121 100644 --- a/Zotlabs/Module/Pubsites.php +++ b/Zotlabs/Module/Pubsites.php @@ -38,6 +38,11 @@ class Pubsites extends \Zotlabs\Web\Controller { foreach($j['sites'] as $jj) { if(! $jj['project']) continue; + if(strpos($jj['version'],' ')) { + $x = explode(' ', $jj['version']); + if($x[1]) + $jj['version'] = $x[1]; + } $m = parse_url($jj['url']); $host = strtolower(substr($jj['url'],strpos($jj['url'],'://')+3)); $rate_links = ((local_channel()) ? ' ' . t('Rate') . '' : ''); diff --git a/include/zot.php b/include/zot.php index 7093a255b..8771495ff 100644 --- a/include/zot.php +++ b/include/zot.php @@ -3963,9 +3963,6 @@ function zotinfo($arr) { require_once('include/channel.php'); $ret['site']['channels'] = channel_total(); - - $ret['site']['version'] = Zotlabs\Lib\System::get_platform_name() . ' ' . STD_VERSION . '[' . DB_UPDATE_VERSION . ']'; - $ret['site']['admin'] = get_config('system','admin_email'); $visible_plugins = array(); -- cgit v1.2.3