Index: branches/5.2.x/core/units/general/libchart/classes/view/chart/Chart.php =================================================================== diff -u -N -r15706 -r16666 --- branches/5.2.x/core/units/general/libchart/classes/view/chart/Chart.php (.../Chart.php) (revision 15706) +++ branches/5.2.x/core/units/general/libchart/classes/view/chart/Chart.php (.../Chart.php) (revision 16666) @@ -48,7 +48,7 @@ * @param integer width of the image * @param integer height of the image */ - protected function LibchartChart($width, $height) { + protected function __construct($width, $height) { // Creates the plot $this->plot = new LibchartPlot($width, $height); $this->plot->setTitle("Untitled chart"); @@ -100,4 +100,4 @@ public function setTitle($title) { $this->plot->setTitle($title); } - } \ No newline at end of file + }