diff options
| author | till <till@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-05-26 10:42:20 +0000 |
|---|---|---|
| committer | till <till@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-05-26 10:42:20 +0000 |
| commit | 3e737d1e16b42e950fbc2159066f05a3023a2068 (patch) | |
| tree | a4162cc50346412a63836afade2ceab89aad3a99 | |
| parent | 2d5e8de454b77d4a94b2f900a2790c037ada8b43 (diff) | |
* minor cs fixes
git-svn-id: https://svn.roundcube.net/trunk@1426 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/installer/index.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/roundcubemail/installer/index.php b/roundcubemail/installer/index.php index f6fa47975..4bd37f3ca 100644 --- a/roundcubemail/installer/index.php +++ b/roundcubemail/installer/index.php @@ -1,10 +1,13 @@ <?php - ini_set('error_reporting', E_ALL&~E_NOTICE); ini_set('display_errors', 1); define('INSTALL_PATH', realpath(dirname(__FILE__) . '/../').'/'); -$include_path = INSTALL_PATH . 'program/lib' . PATH_SEPARATOR . INSTALL_PATH . 'program' . PATH_SEPARATOR . INSTALL_PATH . 'program/include' . PATH_SEPARATOR . ini_get('include_path'); +$include_path = INSTALL_PATH . 'program/lib' . PATH_SEPARATOR; +$include_path .= INSTALL_PATH . 'program' . PATH_SEPARATOR; +$include_path .= INSTALL_PATH . 'program/include' . PATH_SEPARATOR; +$include_path .= ini_get('include_path'); + set_include_path($include_path); session_start(); @@ -22,7 +25,6 @@ function __autoload($classname) ); include_once $filename. '.php'; } - ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
