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