#19643791 설치가 정상적으로 되지 않던 문제 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@8201 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2011-03-24 02:03:39 +00:00
parent 4235b083a2
commit 912a77740b

View file

@ -57,7 +57,7 @@
if(!$GLOBALS['__DB__']) {
$class_name = 'DB'.ucfirst($db_type);
$class_file = _XE_PATH_."classes/db/$class_name.class.php";
if(!file_exists($class_file)) new Object(-1, 'msg_db_not_setted');
if(!file_exists($class_file)) return new Object(-1, 'msg_db_not_setted');
// get a singletone instance of the database driver class
require_once($class_file);