Make URI parsing algorithm more strict.
[htmlpurifier.git] / extras / HTMLPurifierExtras.autoload.php
blob4285d62d198f09d04bc2bd0d6e7e15c626f6d25b
1 <?php
3 /**
4 * @file
5 * Convenience file that registers autoload handler for HTML Purifier.
7 * @warning
8 * This autoloader does not contain the compatibility code seen in
9 * HTMLPurifier_Bootstrap; the user is expected to make any necessary
10 * changes to use this library.
13 if (function_exists('spl_autoload_register')) {
14 spl_autoload_register(array('HTMLPurifierExtras', 'autoload'));
15 if (function_exists('__autoload')) {
16 // Be polite and ensure that userland autoload gets retained
17 spl_autoload_register('__autoload');
19 } elseif (!function_exists('__autoload')) {
20 function __autoload($class) {
21 return HTMLPurifierExtras::autoload($class);
25 // vim: et sw=4 sts=4