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