d1485bf2ec94d5e11a1f96ac681228215d201829
[yaffs-website] / HTMLPurifierExtras.autoload-legacy.php
1 <?php
2
3 /**
4  * @file
5  * Legacy autoloader for systems lacking spl_autoload_register
6  *
7  * Must be separate to prevent deprecation warning on PHP 7.2
8  */
9
10 function __autoload($class)
11 {
12     return HTMLPurifierExtras::autoload($class);
13 }
14
15 // vim: et sw=4 sts=4