00001 <?php
00002
00008 if (function_exists('spl_autoload_register') && function_exists('spl_autoload_unregister')) {
00009
00010 HTMLPurifier_Bootstrap::registerAutoload();
00011 if (function_exists('__autoload')) {
00012
00013 spl_autoload_register('__autoload');
00014 }
00015 } elseif (!function_exists('__autoload')) {
00016 function __autoload($class) {
00017 return HTMLPurifier_Bootstrap::autoload($class);
00018 }
00019 }
00020
00021