summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2013-08-16 10:13:26 +0200
committerThomas Bruederli <thomas@roundcube.net>2013-08-16 10:13:26 +0200
commitdebd0f85155903b4983b6f6e5f14721e282b00fc (patch)
tree0e639295a493f48601e866e32c22a2095384c296
parentc9192c1c737c7a605c6fd61c6609a3a83cd97eba (diff)
Let the framework adjust the include_path if necessary
-rw-r--r--program/lib/Roundcube/bootstrap.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/program/lib/Roundcube/bootstrap.php b/program/lib/Roundcube/bootstrap.php
index b659955c8..c5c785b65 100644
--- a/program/lib/Roundcube/bootstrap.php
+++ b/program/lib/Roundcube/bootstrap.php
@@ -84,6 +84,13 @@ if (extension_loaded('mbstring')) {
@mb_regex_encoding(RCUBE_CHARSET);
}
+// make sure the lib directory is in the include_path
+$rcube_include_path = realpath(RCUBE_LIB_DIR . '..');
+$sep = PATH_SEPARATOR;
+if (!preg_match("!(^|$sep)$rcube_include_path($sep|\$)!", ini_get('include_path'))) {
+ set_include_path(ini_get('include_path') . PATH_SEPARATOR . $rcube_include_path);
+}
+
// Register autoloader
spl_autoload_register('rcube_autoload');