diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2016-12-22 15:21:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-22 15:21:10 +0100 |
commit | 6b94da7594eb89764097beee349e72f0723087fb (patch) | |
tree | a9a6104b9adafc3fb09654a614f9fa6738eb4966 /lib/private | |
parent | bb8b647bd6bcd8a51d6b0e020d5a1f7d00498d3c (diff) | |
parent | 44052210a2eb6d8bee72d39f22c600316691b601 (diff) | |
download | nextcloud-server-6b94da7594eb89764097beee349e72f0723087fb.tar.gz nextcloud-server-6b94da7594eb89764097beee349e72f0723087fb.zip |
Merge pull request #2828 from nextcloud/only-show-version
Only show version in settings
Diffstat (limited to 'lib/private')
-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; |