- move added of adodb path to include path from DBInit.php to Settings.php

This commit is contained in:
steinm 2012-05-08 08:02:06 +00:00
parent 40db3387de
commit 46bf243ba8
2 changed files with 3 additions and 3 deletions

View File

@ -18,9 +18,6 @@
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
if(isset($settings->_ADOdbPath))
ini_set('include_path', $settings->_ADOdbPath. PATH_SEPARATOR .ini_get('include_path'));
if(!empty($settings->_coreDir))
require_once($settings->_coreDir.'/Core.php');
else

View File

@ -67,4 +67,7 @@ if (isset($settingsOLD)) {
exit;
}
if(isset($settings->_ADOdbPath))
ini_set('include_path', $settings->_ADOdbPath. PATH_SEPARATOR .ini_get('include_path'));
?>