[php8-compat] Fix issue with returning bool from uasort by using the spaceship operator
[civicrm-core.git] / CRM / Core / BAO / Dashboard.php
index c5ade57f4a493f4424c8f50c129a4de5d01201ad..5ef7321b15f82dd5b105135c151e4bbfe01d21bd 100644 (file)
@@ -96,7 +96,7 @@ class CRM_Core_BAO_Dashboard extends CRM_Core_DAO_Dashboard {
         if (!isset($a['dashboard_contact.weight'])) {
           return 1;
         }
-        return $a['dashboard_contact.weight'] > $b['dashboard_contact.weight'];
+        return $a['dashboard_contact.weight'] <=> $b['dashboard_contact.weight'];
       });
     }
     return Civi::$statics[__CLASS__][__FUNCTION__][$cid] ?? [];