summaryrefslogtreecommitdiffstats
path: root/settings/ajax/apps/ocs.php
diff options
context:
space:
mode:
Diffstat (limited to 'settings/ajax/apps/ocs.php')
-rw-r--r--settings/ajax/apps/ocs.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/ajax/apps/ocs.php b/settings/ajax/apps/ocs.php
index 9c5adfcfef9..b68083fca6b 100644
--- a/settings/ajax/apps/ocs.php
+++ b/settings/ajax/apps/ocs.php
@@ -33,18 +33,18 @@ if(is_array($categoryNames)) {
// show only external apps that aren't enabled yet
$local=false;
foreach($enabledApps as $a) {
- if($a == $app['name']) {
+ if($a === $app['name']) {
$local=true;
}
}
if(!$local) {
- if($app['preview']=='') {
+ if($app['preview'] === '') {
$pre=OC_Helper::imagePath('settings', 'trans.png');
} else {
$pre=$app['preview'];
}
- if($app['label']=='recommended') {
+ if($app['label'] === 'recommended') {
$label='3rd Party';
} else {
$label='Recommended';