summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsparc <sparc@208e9e7b-5314-0410-a742-e7e81cd9613c>2005-10-14 07:58:24 +0000
committersparc <sparc@208e9e7b-5314-0410-a742-e7e81cd9613c>2005-10-14 07:58:24 +0000
commit3d6c6a92e1e9d5ec822332c29bf926e1e95621b5 (patch)
tree2f2647e6be595ca4e733f309e84692a7855b267f
parent8147f20068a27d5d7deb5f22ee6e3505c7bd5918 (diff)
even better include_path setting
git-svn-id: https://svn.roundcube.net/trunk@32 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/index.php b/roundcubemail/index.php
index f59820f25..b58b02fe5 100644
--- a/roundcubemail/index.php
+++ b/roundcubemail/index.php
@@ -51,7 +51,7 @@ if ($CURRENT_PATH!='')
$CURRENT_PATH.='/';
// set environment first
-ini_set('include_path', ini_get('include_path').PATH_SEPARATOR.$INSTALL_PATH.PATH_SEPARATOR.$CURRENT_PATH.'program'.PATH_SEPARATOR.$CURRENT_PATH.'program/lib');
+ini_set('include_path', $INSTALL_PATH.PATH_SEPARATOR.$CURRENT_PATH.'program'.PATH_SEPARATOR.$CURRENT_PATH.'program/lib'.PATH_SEPARATOR.ini_get('include_path'));
ini_set('session.name', 'sessid');
ini_set('session.use_cookies', 1);
ini_set('error_reporting', E_ALL&~E_NOTICE);