diff --git a/build.xml b/build.xml
index 3c48c9c24..7ba251999 100644
--- a/build.xml
+++ b/build.xml
@@ -36,7 +36,8 @@
-
+
+
@@ -129,7 +130,7 @@
-
+
@@ -150,11 +151,11 @@
-
+
-
+
-
+
-
+
diff --git a/inc/inc.Settings.php b/inc/inc.Settings.php
index 90b26ac24..07a49b021 100644
--- a/inc/inc.Settings.php
+++ b/inc/inc.Settings.php
@@ -60,7 +60,7 @@ if($settings->_dbDriver == 'sqlite' && empty($settings->_dbDatabase)) {
$settings->_dbDatabase = $__datadir."/content.db";
}
-ini_set('include_path', $settings->_rootDir.'pear'. PATH_SEPARATOR .ini_get('include_path'));
+ini_set('include_path', $settings->_rootDir.'..'. PATH_SEPARATOR .ini_get('include_path'));
if(!empty($settings->_extraPath)) {
ini_set('include_path', $settings->_extraPath. PATH_SEPARATOR .ini_get('include_path'));
}
@@ -75,12 +75,8 @@ if(isset($settings->_maxExecutionTime)) {
* relative to it.
*/
ini_set('include_path', $settings->_rootDir. PATH_SEPARATOR .ini_get('include_path'));
-/* Add root Dir.'../pear'. Needed because the SeedDMS_Core, etc. are included
- * relative to it.
- */
-ini_set('include_path', $settings->_rootDir.'../pear'. PATH_SEPARATOR .ini_get('include_path'));
-/* composer is installed in pear directory, but install tool does not need it */
+/* composer is installed in vendor directory, but install tool does not need it */
if(!defined("SEEDDMS_INSTALL"))
require_once 'vendor/autoload.php';