Files
luos/thirdparty/HTMLPurifier/HTMLPurifier.autoload.php

15 lines
253 B
PHP

<?php
/**
* @file
* Convenience file that registers autoload handler for HTML Purifier.
* It also does some sanity checks.
*/
spl_autoload_register(function($class)
{
return HTMLPurifier_Bootstrap::autoload($class);
});
// vim: et sw=4 sts=4