0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-09-19 18:55:19 +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:
Edward Z. Yang 2007-11-29 22:06:21 +00:00
parent 3ef9bdf8a2
commit 620ab75906

View File

@ -177,8 +177,8 @@ class HTMLPurifier_Printer_ConfigForm_NullDecorator extends HTMLPurifier_Printer
/**
* @param $obj Printer to decorate
*/
public function HTMLPurifier_Printer_ConfigForm_NullDecorator($obj) {
parent::HTMLPurifier_Printer();
public function __construct($obj) {
parent::__construct();
$this->obj = $obj;
}
public function render($ns, $directive, $value, $name, $config) {