Quick links.

This commit is contained in:
James Cole
2015-12-15 12:38:18 +01:00
parent 0303b45707
commit 301528e2d2
7 changed files with 98 additions and 13 deletions

View File

@@ -87,7 +87,7 @@ class ReportController extends Controller
foreach ($accounts as $account) {
$accountIds[] = $account->id;
}
$accountIds = join(';', $accountIds);
$accountIds = join(',', $accountIds);
return view(
'reports.default.year',
@@ -127,7 +127,7 @@ class ReportController extends Controller
foreach ($accounts as $account) {
$accountIds[] = $account->id;
}
$accountIds = join(';', $accountIds);
$accountIds = join(',', $accountIds);
// continue!
return view(
@@ -159,7 +159,7 @@ class ReportController extends Controller
foreach ($accounts as $account) {
$accountIds[] = $account->id;
}
$accountIds = join(';', $accountIds);
$accountIds = join(',', $accountIds);
return view(
'reports.default.multi-year', compact('budgets', 'accounts', 'categories', 'start', 'end', 'accountIds', 'report_type')