HTMLPurifier.autoload-legacy.php 261 B

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