Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-09-02 09:16:27 +0300
committerMorris Jobke <hey@morrisjobke.de>2015-09-02 09:16:27 +0300
commitc86cac6a2b2c269df41f4133e8f918cbb8aca28a (patch)
treeee00d15a5b0811ef1494b31ca192f7b796d5694f /settings/controller
parent310084cc25b63ce05b208a426d54e34a2790a6b4 (diff)
use config.php value instead of version string
Diffstat (limited to 'settings/controller')
-rw-r--r--settings/controller/checksetupcontroller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/controller/checksetupcontroller.php b/settings/controller/checksetupcontroller.php
index 33f94fe4238..ca4eb255f6b 100644
--- a/settings/controller/checksetupcontroller.php
+++ b/settings/controller/checksetupcontroller.php
@@ -143,7 +143,7 @@ class CheckSetupController extends Controller {
}
$features = (string)$this->l10n->t('installing and updating apps via the app store or Federated Cloud Sharing');
- if(OC_Util::getEditionString() !== '') {
+ if(!$this->config->getSystemValue('appstoreenabled', true)) {
$features = (string)$this->l10n->t('Federated Cloud Sharing');
}