thomascube
2009-07-03 588135500bc21df518b1155c91e3514f82b0e653
program/include/iniset.php
@@ -78,17 +78,19 @@
 * @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_(.+)/',
      array(
        '/MDB2_(.+)/',
           '/Mail_(.+)/',
           '/Net_(.+)/',
       '/^html_.+/',
       '/^utf8$/',
       '/html2text/'
   ),
      array('MDB2/\\1',
      array(
        'MDB2/\\1',
           'Mail/\\1',
           'Net/\\1',
       'html',
@@ -100,6 +102,8 @@
  include $filename. '.php';
}
spl_autoload_register('rcube_autoload');
/**
 * Local callback function for PEAR errors
 */