Merge pull request #19337 from owncloud/fix-shipped-check-for-apps

Correctly check whether an app is shipped
This commit is contained in:
Thomas Müller 2015-09-24 14:51:59 +02:00
commit 5ee46c8500
1 changed files with 1 additions and 1 deletions

View File

@ -837,7 +837,7 @@ class OC_App {
$info['active'] = $active;
if (isset($info['shipped']) and ($info['shipped'] == 'true')) {
if (self::isShipped($app)) {
$info['internal'] = true;
$info['level'] = self::officialApp;
$info['removable'] = false;