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