Skip to content
Snippets Groups Projects
Commit 6b94da75 authored by Roeland Jago Douma's avatar Roeland Jago Douma Committed by GitHub
Browse files

Merge pull request #2828 from nextcloud/only-show-version

Only show version in settings
parents bb8b647b 44052210
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment