1<?php
2
3/**
4 * @file
5 * Legacy autoloader for systems lacking spl_autoload_register
6 *
7 */
8
9spl_autoload_register(function($class)
10{
11     return HTMLPurifier_Bootstrap::autoload($class);
12});
13
14// vim: et sw=4 sts=4
15