Index: branches/5.2.x/core/units/general/libchart/classes/view/chart/VerticalBarChart.php =================================================================== diff -u -N -r15706 -r16666 --- branches/5.2.x/core/units/general/libchart/classes/view/chart/VerticalBarChart.php (.../VerticalBarChart.php) (revision 15706) +++ branches/5.2.x/core/units/general/libchart/classes/view/chart/VerticalBarChart.php (.../VerticalBarChart.php) (revision 16666) @@ -36,8 +36,8 @@ * @param integer width of the image * @param integer height of the image */ - public function LibchartVerticalBarChart($width = 600, $height = 250) { - parent::LibchartBarChart($width, $height); + public function __construct($width = 600, $height = 250) { + parent::__construct($width, $height); $this->emptyToFullRatio = 1 / 5; $this->plot->setGraphPadding(new LibchartPadding(5, 30, 50, 50)); @@ -211,4 +211,4 @@ $this->plot->render($fileName); } - } \ No newline at end of file + }