From d7cb77414c4cf074269b6812c3dd3571ee29afca Mon Sep 17 00:00:00 2001
From: svncommit <devs@roundcube.net>
Date: Tue, 25 Oct 2005 11:04:17 -0400
Subject: [PATCH] 

---
 index.php |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/index.php b/index.php
index d5b2db0..c80100a 100644
--- a/index.php
+++ b/index.php
@@ -51,16 +51,18 @@
 	$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');
+// RC include folders MUST be included FIRST to avoid other
+// possible not compatible libraries (i.e PEAR) to be included
+// instead the ones provided by RC
+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);
 
-
 // increase maximum execution time for php scripts
 // (does not work in safe mode)
 @set_time_limit('120');
-
 
 // include base files
 require_once('include/rcube_shared.inc');

--
Gitblit v1.9.1