diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-12-22 14:19:29 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-12-22 14:19:29 +0100 |
commit | 44052210a2eb6d8bee72d39f22c600316691b601 (patch) | |
tree | f561fbf360dac9006c128d5bab6096104aa8d238 /lib/private/legacy | |
parent | 7f8d22e7102293d96c365b380bf1845ff2de6b71 (diff) | |
download | nextcloud-server-44052210a2eb6d8bee72d39f22c600316691b601.tar.gz nextcloud-server-44052210a2eb6d8bee72d39f22c600316691b601.zip |
Only show version in settings - do not list channel
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'lib/private/legacy')
-rw-r--r-- | lib/private/legacy/util.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/legacy/util.php b/lib/private/legacy/util.php index 55dc5ae7c15..d97ba37c4c0 100644 --- a/lib/private/legacy/util.php +++ b/lib/private/legacy/util.php @@ -1381,12 +1381,12 @@ class OC_Util { } /** - * A human readable string is generated based on version, channel and build number + * A human readable string is generated based on version and build number * * @return string */ public static function getHumanVersion() { - $version = OC_Util::getVersionString() . ' (' . OC_Util::getChannel() . ')'; + $version = OC_Util::getVersionString(); $build = OC_Util::getBuild(); if (!empty($build) and OC_Util::getChannel() === 'daily') { $version .= ' Build:' . $build; |