Wrong operator,

This commit is contained in:
James Cole 2015-03-27 19:47:31 +01:00
parent 32a036b076
commit 53ff5c1490

View File

@ -55,7 +55,7 @@ class GoogleChartController extends Controller
$today = new Carbon;
while ($end >= $current) {
$certain = $current > $today;
$certain = $current < $today;
$chart->addRow(clone $current, Steam::balance($account, $current), $certain);
$current->addDay();
}