diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-02-18 23:51:18 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-02-23 23:16:28 +0100 |
commit | b40d4c9cbc9fdb3a889d5d2fb8b5e770a8efe0e3 (patch) | |
tree | c85b894628c1a54a55b0e947f685bcb4a84207ad /lib | |
parent | 39d84069337d7d6ddcaed7b1daba37cfeb26dcc7 (diff) | |
download | nextcloud-server-b40d4c9cbc9fdb3a889d5d2fb8b5e770a8efe0e3.tar.gz nextcloud-server-b40d4c9cbc9fdb3a889d5d2fb8b5e770a8efe0e3.zip |
app store can be used with any edition
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/ocsclient.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/private/ocsclient.php b/lib/private/ocsclient.php index c62cae15e46..d729b88caa0 100644 --- a/lib/private/ocsclient.php +++ b/lib/private/ocsclient.php @@ -49,9 +49,7 @@ class OCSClient { * @return bool */ public static function isAppStoreEnabled() { - if (\OC::$server->getConfig()->getSystemValue('appstoreenabled', true) === false || - \OC_Util::getEditionString() !== '' - ) { + if (\OC::$server->getConfig()->getSystemValue('appstoreenabled', true) === false ) { return false; } |