thomascube
2009-07-13 afc6e4bd108525104b61a46f9973f8f8358c6dd2
program/include/iniset.php
@@ -78,28 +78,32 @@
 * @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
 */