diff options
Diffstat (limited to 'settings/apps.php')
-rw-r--r-- | settings/apps.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/apps.php b/settings/apps.php index 44cfff7e3f1..20b12887554 100644 --- a/settings/apps.php +++ b/settings/apps.php @@ -30,13 +30,13 @@ OC_App::setActiveNavigationEntry( "core_apps" ); function app_sort( $a, $b ) { - if ($a['active'] != $b['active']) { + if ($a['active'] !== $b['active']) { return $b['active'] - $a['active']; } - if ($a['internal'] != $b['internal']) { + if ($a['internal'] !== $b['internal']) { return $b['internal'] - $a['internal']; } |