Whoops, forgot to edit WHATSNEW
[htmlpurifier.git] / library / HTMLPurifier.autoload-legacy.php
blobc271cd1588a03ed0cce6c8e0225f74731bea4a89
1 <?php
3 /**
4 * @file
5 * Legacy autoloader for systems lacking spl_autoload_register
7 * Must be separate to prevent deprecation warning on PHP 7.2
8 */
10 function __autoload($class)
12 return HTMLPurifier_Bootstrap::autoload($class);
15 // vim: et sw=4 sts=4