diff options
author | Brion Vibber <brion@pobox.com> | 2010-02-24 23:39:40 +0000 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-02-24 23:39:40 +0000 |
commit | e18e659ca3b40ade283f51c91a263507d7c6694e (patch) | |
tree | e2852ba5c01d4125e802dd6fd5c66980b0b7d114 /extlib/HTMLPurifier/HTMLPurifier.autoload.php | |
parent | 93507a192755494417eb0433edd315880752c857 (diff) |
Drop HTMLPurifier; we don't need its extra capabilities and we're already using htmLawed which is lighter-weight.
Diffstat (limited to 'extlib/HTMLPurifier/HTMLPurifier.autoload.php')
-rw-r--r-- | extlib/HTMLPurifier/HTMLPurifier.autoload.php | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/extlib/HTMLPurifier/HTMLPurifier.autoload.php b/extlib/HTMLPurifier/HTMLPurifier.autoload.php deleted file mode 100644 index 8d4017640..000000000 --- a/extlib/HTMLPurifier/HTMLPurifier.autoload.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -/** - * @file - * Convenience file that registers autoload handler for HTML Purifier. - */ - -if (function_exists('spl_autoload_register') && function_exists('spl_autoload_unregister')) { - // We need unregister for our pre-registering functionality - HTMLPurifier_Bootstrap::registerAutoload(); - if (function_exists('__autoload')) { - // Be polite and ensure that userland autoload gets retained - spl_autoload_register('__autoload'); - } -} elseif (!function_exists('__autoload')) { - function __autoload($class) { - return HTMLPurifier_Bootstrap::autoload($class); - } -} - -// vim: et sw=4 sts=4 |