Files
accounting_dev/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload-legacy.php
T
2026-05-26 08:07:45 +00:00

15 lines
213 B
PHP

<?php
/**
* @file
* Legacy autoloader for systems lacking spl_autoload_register
*
*/
spl_autoload_register(function($class)
{
return HTMLPurifier_Bootstrap::autoload($class);
});
// vim: et sw=4 sts=4