mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
eaabccdd9b
- Removed HTMLPurifier_Error - Documentation updates - Removed more copy() methods in favor of clone - HTMLPurifier::getInstance() to HTMLPurifier::instance() - Fix InterchangeBuilder to use HTMLPURIFIER_PREFIX git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1689 48356398-32a2-884e-a903-53898d9a118a
10 lines
124 B
PHP
10 lines
124 B
PHP
<?php
|
|
|
|
/**
|
|
* Base class for configuration entity
|
|
*/
|
|
abstract class HTMLPurifier_ConfigDef {
|
|
public $class = false;
|
|
}
|
|
|