0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-11-09 23:28:42 +00:00

Move constant to Bootstrap to prevent autoload problems.

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1541 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang 2008-02-10 22:29:01 +00:00
parent 37b24b6732
commit 8165adb6c8
2 changed files with 3 additions and 3 deletions

View File

@ -39,9 +39,6 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
// constants are slow, but we'll make one exception
define('HTMLPURIFIER_PREFIX', dirname(__FILE__));
/**
* Facade that coordinates HTML Purifier's subsystems in order to purify HTML.
*

View File

@ -1,5 +1,8 @@
<?php
// constants are slow, but we'll make one exception
define('HTMLPURIFIER_PREFIX', dirname(__FILE__));
/**
* Bootstrap class that contains meta-functionality for HTML Purifier such as
* the autoload function.