fix undefined "shipped"
This commit is contained in:
parent
186c6a56d1
commit
793ccfd1df
1 changed files with 5 additions and 5 deletions
|
@ -770,12 +770,12 @@ class OC_App{
|
|||
}
|
||||
|
||||
// prio 2: shipped
|
||||
if ($a['shipped'] != $b['shipped']) {
|
||||
$atemp = ($a['shipped'] == true ? 1 : 0);
|
||||
$btemp = ($b['shipped'] == true ? 1 : 0);
|
||||
return ($btemp - $atemp);
|
||||
$ashipped = (array_key_exists('shipped', $a) && $a['shipped'] === 'true') ? 1 : 0;
|
||||
$bshipped = (array_key_exists('shipped', $b) && $b['shipped'] === 'true') ? 1 : 0;
|
||||
if ($ashipped !== $bshipped) {
|
||||
return ($bshipped - $ashipped);
|
||||
}
|
||||
|
||||
|
||||
// prio 3: recommended
|
||||
if ($a['internalclass'] != $b['internalclass']) {
|
||||
$atemp = ($a['internalclass'] == 'recommendedapp' ? 1 : 0);
|
||||
|
|
Loading…
Reference in a new issue