Index: branches/5.2.x/core/units/general/libchart/classes/view/primitive/Padding.php =================================================================== diff -u -r15706 -r16666 --- branches/5.2.x/core/units/general/libchart/classes/view/primitive/Padding.php (.../Padding.php) (revision 15706) +++ branches/5.2.x/core/units/general/libchart/classes/view/primitive/Padding.php (.../Padding.php) (revision 16666) @@ -54,7 +54,7 @@ * @param integer Bottom padding * @param integer Left padding */ - public function LibchartPadding($top, $right = null, $bottom = null, $left = null) { + public function __construct($top, $right = null, $bottom = null, $left = null) { $this->top = $top; if ($right == null) { $this->right = $top; @@ -66,4 +66,4 @@ $this->left = $left; } } - } \ No newline at end of file + }