Merge branch 'release/3.3.7' into develop

This commit is contained in:
James Cole
2015-04-05 21:15:01 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
Firefly III (v3.3.6) Firefly III (v3.3.7)
=========== ===========
[![Build Status](https://travis-ci.org/JC5/firefly-iii.svg?branch=develop)](https://travis-ci.org/JC5/firefly-iii) [![Build Status](https://travis-ci.org/JC5/firefly-iii.svg?branch=develop)](https://travis-ci.org/JC5/firefly-iii)

View File

@@ -89,7 +89,7 @@ class GoogleChartController extends Controller
$index = 1; $index = 1;
/** @var Account $account */ /** @var Account $account */
foreach ($accounts as $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->addColumn('Balance for ' . $accountName, 'number');
$chart->addCertainty($index); $chart->addCertainty($index);
$index++; $index++;