mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Fixed chart and redirect
This commit is contained in:
@@ -109,7 +109,7 @@ class AuthController extends Controller
|
||||
}
|
||||
App::abort(500, 'Not a user!');
|
||||
|
||||
return false;
|
||||
return redirect('/');
|
||||
}
|
||||
|
||||
}
|
||||
|
@@ -135,7 +135,7 @@ class BudgetController extends Controller
|
||||
}
|
||||
}
|
||||
|
||||
$noBudgetExpenses = $repository->getWithoutBudgetSum($start, $end);
|
||||
$noBudgetExpenses = $repository->getWithoutBudgetSum($start, $end) * -1;
|
||||
$allEntries->push([trans('firefly.noBudget'), 0, 0, $noBudgetExpenses]);
|
||||
|
||||
foreach ($allEntries as $entry) {
|
||||
|
Reference in New Issue
Block a user