MDL-52081 forms: Use __construct() for constructors
This commit is contained in:
@@ -118,11 +118,17 @@ class HTML_QuickForm_Renderer_Tableless extends HTML_QuickForm_Renderer_Default
|
||||
*
|
||||
* @access public
|
||||
*/
|
||||
function HTML_QuickForm_Renderer_Tableless()
|
||||
{
|
||||
$this->HTML_QuickForm_Renderer_Default();
|
||||
public function __construct() {
|
||||
parent::__construct();
|
||||
} // end constructor
|
||||
|
||||
/**
|
||||
* Old syntax of class constructor for backward compatibility.
|
||||
*/
|
||||
public function HTML_QuickForm_Renderer_Tableless() {
|
||||
self::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Called when visiting a header element
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user