From 53ff5c14900dcee2c9bfc8c108d1b4cffc16affa Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 27 Mar 2015 19:47:31 +0100 Subject: [PATCH] Wrong operator, --- app/Http/Controllers/GoogleChartController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/GoogleChartController.php b/app/Http/Controllers/GoogleChartController.php index 438f47e63f..a2faed935c 100644 --- a/app/Http/Controllers/GoogleChartController.php +++ b/app/Http/Controllers/GoogleChartController.php @@ -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(); }