In the Visitor Overview the Chart showing the actions per visit is cut off at the top.
I debugged through Chart.php and found the problem there. All the dates in [Chart.php Line 133](source:trunk/core/Visualization/Chart.php@4963#L133) are kind of floats with a comma as the decimal mark and the json_encode() three lines further creates rubbish as it takes the comma as a separator.
The comma as decimal mark is the same reason why the calculation in [getMaxValue()](source:trunk/core/Visualization/Chart.php@4963#L97) does not work.
Yeah, I suspected this just after committing [4963]. I'll revert and find the root cause.
(In [4967]) fixes #2534 (I think)...output looked ok with de_DE.UTF-8
[4967] fixed a bug in the json_encode compatibility function for floats
Patched my system. Works!
@vipsoft: Thanks for fixing this bug! I really appreciate your short response time.