From 5d904f1ea52e9794ab5090d7e2a0896bf938a902 Mon Sep 17 00:00:00 2001 From: Danijel K Date: Thu, 21 Mar 2019 14:08:23 +0100 Subject: [PATCH] Make sticked messages work on PHP7.3 compact changed behaviour on PHP7.3, and I also can't see the need for it as date and incidents are still passed to the view. This resolves #3515 --- resources/views/partials/modules/stickied.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/partials/modules/stickied.blade.php b/resources/views/partials/modules/stickied.blade.php index 2b6557d4a497..0699cc129986 100644 --- a/resources/views/partials/modules/stickied.blade.php +++ b/resources/views/partials/modules/stickied.blade.php @@ -2,7 +2,7 @@

{{ trans('cachet.incidents.stickied') }}

@foreach($stickiedIncidents as $date => $incidents) - @include('partials.incidents', [compact($date), compact($incidents)]) + @include('partials.incidents') @endforeach
@endif