diff options
author | thomascube <thomas@roundcube.net> | 2009-07-03 13:18:39 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2009-07-03 13:18:39 +0000 |
commit | 588135500bc21df518b1155c91e3514f82b0e653 (patch) | |
tree | 2c9658c742bad0199018281ec8fc1e17365c49b5 /program/include/iniset.php | |
parent | 3ca3bd467ab9c5306de4a30c52f737e92eb39a9c (diff) |
Use spl_autoload_register() instead of __autoload (#1485947) + fix indentation
Diffstat (limited to 'program/include/iniset.php')
-rwxr-xr-x | program/include/iniset.php | 34 |
1 files changed, 19 insertions, 15 deletions
diff --git a/program/include/iniset.php b/program/include/iniset.php index 8905161d2..9321dadfa 100755 --- a/program/include/iniset.php +++ b/program/include/iniset.php @@ -78,28 +78,32 @@ if(extension_loaded('mbstring')) * @todo Make Zend, PEAR etc play with this * @todo Make our classes conform to a more straight forward CS. */ -function __autoload($classname) +function rcube_autoload($classname) { $filename = preg_replace( - array('/MDB2_(.+)/', - '/Mail_(.+)/', - '/Net_(.+)/', - '/^html_.+/', - '/^utf8$/', - '/html2text/' - ), - array('MDB2/\\1', - 'Mail/\\1', - 'Net/\\1', - 'html', - 'utf8.class', - 'lib/html2text' // see #1485505 - ), + array( + '/MDB2_(.+)/', + '/Mail_(.+)/', + '/Net_(.+)/', + '/^html_.+/', + '/^utf8$/', + '/html2text/' + ), + array( + 'MDB2/\\1', + 'Mail/\\1', + 'Net/\\1', + 'html', + 'utf8.class', + 'lib/html2text' // see #1485505 + ), $classname ); include $filename. '.php'; } +spl_autoload_register('rcube_autoload'); + /** * Local callback function for PEAR errors */ |