f_config/DB.php 제거

class_exists('RootDB')로 대체 가능
This commit is contained in:
2018-03-25 00:21:06 +09:00
parent 9e1aadf486
commit d777ca97c6
23 changed files with 31 additions and 39 deletions
+1 -2
View File
@@ -16,13 +16,12 @@ function dbSQLFail($params){
]);
}
if(!AppConf::getRoot()->isExists()){
if(!class_exists('RootDB')){
Json::die([
'step'=>'config'
]);
}
require(__DIR__.'/../f_config/DB.php');
$rootDB = RootDB::db();
$rootDB->throw_exception_on_nonsql_error = false;