diff options
author | kondou <kondou@ts.unde.re> | 2013-04-17 15:32:03 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-07-21 13:55:25 +0200 |
commit | 05084e03a08206b736abd04522e10c97cd3f2fc3 (patch) | |
tree | 1352f5011a523db520ee0e899db8426ecc3fc68f /settings/apps.php | |
parent | 94fcbc736e3500e0107d8e4f1ce5a2133fcdd8d8 (diff) | |
download | nextcloud-server-05084e03a08206b736abd04522e10c97cd3f2fc3.tar.gz nextcloud-server-05084e03a08206b736abd04522e10c97cd3f2fc3.zip |
Use !== and === in settings.
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']; } |