2019-04-16 01:11:54 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Legacy autoloader for systems lacking spl_autoload_register
|
|
|
|
*
|
|
|
|
* Must be separate to prevent deprecation warning on PHP 7.2
|
|
|
|
*/
|
|
|
|
|
|
|
|
function __autoload($class)
|
|
|
|
{
|
2018-03-12 03:23:55 +00:00
|
|
|
return HTMLPurifierExtras::autoload($class);
|
2019-04-16 01:11:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// vim: et sw=4 sts=4
|