mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-09 23:28:42 +00:00
Fix constructor I missed in ConfigForm.
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1460 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
parent
3ef9bdf8a2
commit
620ab75906
@ -177,8 +177,8 @@ class HTMLPurifier_Printer_ConfigForm_NullDecorator extends HTMLPurifier_Printer
|
|||||||
/**
|
/**
|
||||||
* @param $obj Printer to decorate
|
* @param $obj Printer to decorate
|
||||||
*/
|
*/
|
||||||
public function HTMLPurifier_Printer_ConfigForm_NullDecorator($obj) {
|
public function __construct($obj) {
|
||||||
parent::HTMLPurifier_Printer();
|
parent::__construct();
|
||||||
$this->obj = $obj;
|
$this->obj = $obj;
|
||||||
}
|
}
|
||||||
public function render($ns, $directive, $value, $name, $config) {
|
public function render($ns, $directive, $value, $name, $config) {
|
||||||
|
Loading…
Reference in New Issue
Block a user