From 8475757716f57de92546383cd86b8a25a5193691 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 5 Apr 2015 21:14:41 +0200 Subject: [PATCH] Removed iconv() commented code. See other commit. --- 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 5806db63e7..0c0ce8138b 100644 --- a/app/Http/Controllers/GoogleChartController.php +++ b/app/Http/Controllers/GoogleChartController.php @@ -89,7 +89,7 @@ class GoogleChartController extends Controller $index = 1; /** @var Account $account */ foreach ($accounts as $account) { - $accountName = $account->name;//iconv('UTF-8', 'ASCII//TRANSLIT', $account->name); + $accountName = $account->name; $chart->addColumn('Balance for ' . $accountName, 'number'); $chart->addCertainty($index); $index++;