Index: branches/5.2.x/core/units/general/libchart/classes/model/Point.php =================================================================== diff -u -N -r15706 -r16666 --- branches/5.2.x/core/units/general/libchart/classes/model/Point.php (.../Point.php) (revision 15706) +++ branches/5.2.x/core/units/general/libchart/classes/model/Point.php (.../Point.php) (revision 16666) @@ -35,7 +35,7 @@ * @param integer x coordinate (label) * @param integer y coordinate (value) */ - public function LibchartPoint($x, $y) { + public function __construct($x, $y) { $this->x = $x; $this->y = $y; } @@ -57,4 +57,4 @@ public function getY() { return $this->y; } - } \ No newline at end of file + }