]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - extlib/HTMLPurifier/HTMLPurifier.autoload-legacy.php
[DATABASE][User_openid_prefs] Fix wrong type for modified column
[quix0rs-gnu-social.git] / extlib / HTMLPurifier / HTMLPurifier.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 HTMLPurifier_Bootstrap::autoload($class);
13 }
14
15 // vim: et sw=4 sts=4