MDL-52081 forms: Use __construct() for constructors

This commit is contained in:
Marina Glancy
2015-12-10 13:45:16 +08:00
parent 6ace0f59ae
commit 696f3dcc83
82 changed files with 761 additions and 208 deletions
@@ -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
*