From cf0ae806913c4010deca500cdef33ebf505abc5b Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Thu, 11 Jan 2018 14:22:43 +1030 Subject: [PATCH] Remove use of event priorities Event priorities are no longer in Laravel - see https://github.com/laravel/framework/commit/dbbfc62beff1625b0d45bbf39650d047555cf4fa --- extensions/sticky/src/Listener/PinStickiedDiscussionsToTop.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/sticky/src/Listener/PinStickiedDiscussionsToTop.php b/extensions/sticky/src/Listener/PinStickiedDiscussionsToTop.php index 898cbdc84..62b00cbfd 100755 --- a/extensions/sticky/src/Listener/PinStickiedDiscussionsToTop.php +++ b/extensions/sticky/src/Listener/PinStickiedDiscussionsToTop.php @@ -25,7 +25,7 @@ class PinStickiedDiscussionsToTop public function subscribe(Dispatcher $events) { $events->listen(ConfigureDiscussionGambits::class, [$this, 'addStickyGambit']); - $events->listen(Searching::class, [$this, 'reorderSearch'], -100); + $events->listen(Searching::class, [$this, 'reorderSearch']); } /**