Changeset 5881355 in github for program/include/iniset.php
- Timestamp:
- Jul 3, 2009 9:18:39 AM (4 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 8448fca
- Parents:
- 3ca3bd4
- File:
-
- 1 edited
-
program/include/iniset.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
program/include/iniset.php
r70306a4 r5881355 79 79 * @todo Make our classes conform to a more straight forward CS. 80 80 */ 81 function __autoload($classname)81 function rcube_autoload($classname) 82 82 { 83 83 $filename = preg_replace( 84 array('/MDB2_(.+)/', 85 '/Mail_(.+)/', 86 '/Net_(.+)/', 87 '/^html_.+/', 88 '/^utf8$/', 89 '/html2text/' 90 ), 91 array('MDB2/\\1', 92 'Mail/\\1', 93 'Net/\\1', 94 'html', 95 'utf8.class', 96 'lib/html2text' // see #1485505 97 ), 84 array( 85 '/MDB2_(.+)/', 86 '/Mail_(.+)/', 87 '/Net_(.+)/', 88 '/^html_.+/', 89 '/^utf8$/', 90 '/html2text/' 91 ), 92 array( 93 'MDB2/\\1', 94 'Mail/\\1', 95 'Net/\\1', 96 'html', 97 'utf8.class', 98 'lib/html2text' // see #1485505 99 ), 98 100 $classname 99 101 ); 100 102 include $filename. '.php'; 101 103 } 104 105 spl_autoload_register('rcube_autoload'); 102 106 103 107 /**
Note: See TracChangeset
for help on using the changeset viewer.
