Skip to content
Snippets Groups Projects
Commit 27118632 authored by Lukas Reschke's avatar Lukas Reschke
Browse files

Merge pull request #13035 from owncloud/new_edition_detection

Automatically detect the edition based on the enterprise_key app.
parents 1785ca48 4a40e569
No related branches found
No related tags found
No related merge requests found
......@@ -285,8 +285,12 @@ class OC_Util {
* @return string
*/
public static function getEditionString() {
OC_Util::loadVersion();
return \OC::$server->getSession()->get('OC_Edition');
if (OC_App::isEnabled('enterprise_key')) {
return "Enterprise";
} else {
return "";
}
}
/**
......@@ -321,8 +325,6 @@ class OC_Util {
$session->set('OC_Version', $OC_Version);
/** @var $OC_VersionString string */
$session->set('OC_VersionString', $OC_VersionString);
/** @var $OC_Edition string */
$session->set('OC_Edition', $OC_Edition);
/** @var $OC_Channel string */
$session->set('OC_Channel', $OC_Channel);
/** @var $OC_Build string */
......
......@@ -8,9 +8,6 @@ $OC_Version=array(7, 8, 1, 0);
// The human readable string
$OC_VersionString='8.0 pre alpha';
// The ownCloud edition
$OC_Edition='';
// The ownCloud channel
$OC_Channel='git';
......
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