From de111c7100015caa7332437e9c64f1d49cedb3cb Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 1 Jan 2016 21:59:19 +0100 Subject: [PATCH] Fix broken route. --- app/Http/breadcrumbs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/breadcrumbs.php b/app/Http/breadcrumbs.php index f4c6487c1d..cf3de22751 100644 --- a/app/Http/breadcrumbs.php +++ b/app/Http/breadcrumbs.php @@ -357,7 +357,7 @@ Breadcrumbs::register( $monthFormat = trans('config.month_and_day'); $title = trans('firefly.report_' . $reportType, ['start' => $start->formatLocalized($monthFormat), 'end' => $end->formatLocalized($monthFormat)]); - $breadcrumbs->push($title, route('reports.report', [$reportType, $start->format('Ymd'), $end->format('Ymd'), join(',', $accountIds)])); + $breadcrumbs->push($title, route('reports.report', [$reportType, $start->format('Ymd'), $end->format('Ymd'), $accountIds])); } );