Automatically detect the edition based on the enterprise_key app.
This commit is contained in:
parent
0836ce9cd8
commit
3dea2b95c6
|
@ -285,8 +285,12 @@ class OC_Util {
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public static function getEditionString() {
|
public static function getEditionString() {
|
||||||
OC_Util::loadVersion();
|
if (OC_App::isEnabled('enterprise_key')) {
|
||||||
return \OC::$server->getSession()->get('OC_Edition');
|
return "Enterprise";
|
||||||
|
} else {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -8,9 +8,6 @@ $OC_Version=array(7, 8, 1, 0);
|
||||||
// The human readable string
|
// The human readable string
|
||||||
$OC_VersionString='8.0 pre alpha';
|
$OC_VersionString='8.0 pre alpha';
|
||||||
|
|
||||||
// The ownCloud edition
|
|
||||||
$OC_Edition='';
|
|
||||||
|
|
||||||
// The ownCloud channel
|
// The ownCloud channel
|
||||||
$OC_Channel='git';
|
$OC_Channel='git';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue