1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-08-04 05:07:55 +02:00

Rename HTML_Generator to HTMLPurifier_Generator.

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@66 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang
2006-07-21 23:10:30 +00:00
parent 6a6afaccc5
commit ccebe77e70
6 changed files with 10 additions and 10 deletions

View File

@@ -29,7 +29,7 @@ class PureHTMLDefinition
);
function PureHTMLDefinition() {
$this->generator = new HTML_Generator();
$this->generator = new HTMLPurifier_Generator();
}
function loadData() {
@@ -506,7 +506,7 @@ class HTMLDTD_ChildDef_Simple extends HTMLDTD_ChildDef
$elements = array_flip($elements);
foreach ($elements as $i => $x) $elements[$i] = true;
$this->elements = $elements;
$this->gen = new HTML_Generator();
$this->gen = new HTMLPurifier_Generator();
}
function validateChildren() {
trigger_error('Cannot call abstract function!', E_USER_ERROR);