Index: branches/5.2.x/core/units/general/libchart/classes/view/chart/BarChart.php =================================================================== diff -u -r15706 -r16666 --- branches/5.2.x/core/units/general/libchart/classes/view/chart/BarChart.php (.../BarChart.php) (revision 15706) +++ branches/5.2.x/core/units/general/libchart/classes/view/chart/BarChart.php (.../BarChart.php) (revision 16666) @@ -35,8 +35,8 @@ * @param integer width of the image * @param integer height of the image */ - protected function LibchartBarChart($width, $height) { - parent::LibchartChart($width, $height); + protected function __construct($width, $height) { + parent::__construct($width, $height); // Initialize the bounds $this->bound = new LibchartBound(); @@ -172,4 +172,4 @@ return $pointList; } - } \ No newline at end of file + }