diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-04-26 12:41:54 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2017-04-26 20:07:53 +0200 |
commit | 1da371b69f8eb9020b9d98731a52a01b6410a03d (patch) | |
tree | 9b9c8a2909a94e66190b0b2a591c15bcf8ebd99b /settings/Controller/AppSettingsController.php | |
parent | b9ebdba7eb16dfddc5ec6bd7bd8ed1b170aab1f3 (diff) | |
download | nextcloud-server-1da371b69f8eb9020b9d98731a52a01b6410a03d.tar.gz nextcloud-server-1da371b69f8eb9020b9d98731a52a01b6410a03d.zip |
Style app bundles
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'settings/Controller/AppSettingsController.php')
-rw-r--r-- | settings/Controller/AppSettingsController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/Controller/AppSettingsController.php b/settings/Controller/AppSettingsController.php index 4cd4afd01dd..ac77b2e7dd6 100644 --- a/settings/Controller/AppSettingsController.php +++ b/settings/Controller/AppSettingsController.php @@ -133,8 +133,8 @@ class AppSettingsController extends Controller { $formattedCategories = [ ['id' => self::CAT_ALL_INSTALLED, 'ident' => 'installed', 'displayName' => (string)$this->l10n->t('Your apps')], ['id' => self::CAT_ENABLED, 'ident' => 'enabled', 'displayName' => (string)$this->l10n->t('Enabled apps')], - ['id' => self::CAT_APP_BUNDLES, 'ident' => 'app-bundles', 'displayName' => (string)$this->l10n->t('App bundles')], ['id' => self::CAT_DISABLED, 'ident' => 'disabled', 'displayName' => (string)$this->l10n->t('Disabled apps')], + ['id' => self::CAT_APP_BUNDLES, 'ident' => 'app-bundles', 'displayName' => (string)$this->l10n->t('App bundles')], ]; $categories = $this->categoryFetcher->get(); foreach($categories as $category) { |