- Fix autoloading of Auth_SASL classes in Installer

release-0.6
alecpl 14 years ago
parent 64867411b1
commit 7479c1d63c

@ -34,8 +34,22 @@
function __autoload($classname) function __autoload($classname)
{ {
$filename = preg_replace( $filename = preg_replace(
array('/MDB2_(.+)/', '/Mail_(.+)/', '/Net_(.+)/', '/^html_.+/', '/^utf8$/'), array(
array('MDB2/\\1', 'Mail/\\1', 'Net/\\1', 'html', 'utf8.class'), '/MDB2_(.+)/',
'/Mail_(.+)/',
'/Net_(.+)/',
'/Auth_(.+)/',
'/^html_.+/',
'/^utf8$/'
),
array(
'MDB2/\\1',
'Mail/\\1',
'Net/\\1',
'Auth/\\1',
'html',
'utf8.class'
),
$classname $classname
); );
include_once $filename. '.php'; include_once $filename. '.php';

Loading…
Cancel
Save