diff --git a/bl-kernel/boot/rules/60.plugins.php b/bl-kernel/boot/rules/60.plugins.php index 7918123b..c03d7ee9 100644 --- a/bl-kernel/boot/rules/60.plugins.php +++ b/bl-kernel/boot/rules/60.plugins.php @@ -121,7 +121,7 @@ function buildPlugins() // Sort the plugins by the position for the site sidebar uasort($plugins['siteSidebar'], function ($a, $b) { - return $a->position()>$b->position(); + return $a->position() <=> $b->position(); } ); }