Removed iconv() commented code. See other commit.

This commit is contained in:
James Cole 2015-04-05 21:14:41 +02:00
parent 20ffd8d61b
commit 8475757716

View File

@ -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++;