fix style

This commit is contained in:
Frank Karlitschek 2013-10-14 10:57:00 +02:00
parent f06df170cb
commit a201a66878
1 changed files with 5 additions and 5 deletions

View File

@ -753,7 +753,7 @@ class OC_App{
$combinedApps = $appList; $combinedApps = $appList;
} }
// bring the apps into the right order with a custom sort funtion // bring the apps into the right order with a custom sort funtion
usort($combinedApps,'\OC_App::customSort'); usort( $combinedApps, '\OC_App::customSort' );
return $combinedApps; return $combinedApps;
} }
@ -771,15 +771,15 @@ class OC_App{
// prio 2: shipped // prio 2: shipped
if ($a['shipped'] != $b['shipped']) { if ($a['shipped'] != $b['shipped']) {
$atemp = ($a['shipped']==true ? 1 : 0); $atemp = ($a['shipped'] == true ? 1 : 0);
$btemp = ($b['shipped']==true ? 1 : 0); $btemp = ($b['shipped'] == true ? 1 : 0);
return ($btemp - $atemp); return ($btemp - $atemp);
} }
// prio 3: recommended // prio 3: recommended
if ($a['internalclass'] != $b['internalclass']) { if ($a['internalclass'] != $b['internalclass']) {
$atemp = ($a['internalclass']=='recommendedapp' ? 1 : 0); $atemp = ($a['internalclass'] == 'recommendedapp' ? 1 : 0);
$btemp = ($b['internalclass']=='recommendedapp' ? 1 : 0); $btemp = ($b['internalclass'] == 'recommendedapp' ? 1 : 0);
return ($btemp - $atemp); return ($btemp - $atemp);
} }