mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-12-22 08:21:52 +00:00
d238b1a9ed
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1528 48356398-32a2-884e-a903-53898d9a118a
14 lines
393 B
PHP
14 lines
393 B
PHP
<?php
|
|
|
|
/**
|
|
* This is a stub include that automatically configures the include path.
|
|
* @warning This file is currently broken.
|
|
*/
|
|
|
|
set_include_path(dirname(__FILE__) . PATH_SEPARATOR . get_include_path() );
|
|
require_once 'HTMLPurifier/Bootstrap.php';
|
|
require_once 'HTMLPurifier.autoload.php';
|
|
|
|
// This is temporary until we get pure autoload working
|
|
require_once 'HTMLPurifier.includes.php';
|