diff options
author | thomascube <thomas@roundcube.net> | 2008-10-27 20:11:32 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-10-27 20:11:32 +0000 |
commit | fee8c6ceab0f66d83e5c62eae44ee7c624847972 (patch) | |
tree | 868b46d76b02de40c9710fe1baf0b6c23f23e542 /installer/index.php | |
parent | cb15aaa2654c00ecc78880c7daec7acee6fa61ec (diff) |
First version of the commandline update script
Diffstat (limited to 'installer/index.php')
-rw-r--r-- | installer/index.php | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/installer/index.php b/installer/index.php index c7f69e3f5..ea8374165 100644 --- a/installer/index.php +++ b/installer/index.php @@ -1,4 +1,5 @@ <?php + ini_set('error_reporting', E_ALL&~E_NOTICE); ini_set('display_errors', 1); @@ -12,21 +13,9 @@ $include_path .= ini_get('include_path'); set_include_path($include_path); -session_start(); +require_once 'utils.php'; -/** - * Use PHP5 autoload for dynamic class loading - * (copy from program/incllude/iniset.php) - */ -function __autoload($classname) -{ - $filename = preg_replace( - array('/MDB2_(.+)/', '/Mail_(.+)/', '/^html_.+/', '/^utf8$/'), - array('MDB2/\\1', 'Mail/\\1', 'html', 'utf8.class'), - $classname - ); - include_once $filename. '.php'; -} +session_start(); $RCI = rcube_install::get_instance(); $RCI->load_config(); |