Commit 8e490462 by Scott

Add old PHP4 constructor for backwards compatibility

parent d210943a
...@@ -66,6 +66,16 @@ ...@@ -66,6 +66,16 @@
$this->request = $request; $this->request = $request;
} }
/**
* @deprecated PHP4-style constructor deprecated from 1.7; please use proper `__construct`
* function instead.
*/
public function qa_html_theme_base($template, $content, $rooturl, $request)
{
self::__construct($template, $content, $rooturl, $request);
}
public function output_array($elements) public function output_array($elements)
/* /*
Output each element in $elements on a separate line, with automatic HTML indenting. Output each element in $elements on a separate line, with automatic HTML indenting.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment