aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/System.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-07-13 20:18:19 -0700
committerzotlabs <mike@macgirvin.com>2017-07-13 20:18:19 -0700
commit2d119c81a44691773bacd9e545ce49bebd522098 (patch)
treec4f0ccce9224f2952f308bc60917438423d2138e /Zotlabs/Lib/System.php
parent88bb61018da11207293a2bcbfaef7ce99623e0ba (diff)
downloadvolse-hubzilla-2d119c81a44691773bacd9e545ce49bebd522098.tar.gz
volse-hubzilla-2d119c81a44691773bacd9e545ce49bebd522098.tar.bz2
volse-hubzilla-2d119c81a44691773bacd9e545ce49bebd522098.zip
turn platform name and std_version into config variables
Diffstat (limited to 'Zotlabs/Lib/System.php')
-rw-r--r--Zotlabs/Lib/System.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/Zotlabs/Lib/System.php b/Zotlabs/Lib/System.php
index 3d5b18506..a5790fb07 100644
--- a/Zotlabs/Lib/System.php
+++ b/Zotlabs/Lib/System.php
@@ -19,6 +19,9 @@ class System {
static public function get_project_version() {
if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['hide_version'])
return '';
+ if(is_array(\App::$config) && is_array(\App::$config['system']) && array_key_exists('std_version',\App::$config['system']))
+ return \App::$config['system']['std_version'];
+
return self::get_std_version();
}