国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
268B

  1. <?php
  2. if (!defined('DEDEINC')) exit('dedebiz');
  3. /**
  4. * @file
  5. * Legacy autoloader for systems lacking spl_autoload_register
  6. *
  7. */
  8. spl_autoload_register(function($class)
  9. {
  10. return HTMLPurifier_Bootstrap::autoload($class);
  11. });
  12. // vim: et sw=4 sts=4