php7.2호환을 위해 변경한 클래스 Object 를 BaseObject으로 변경

This commit is contained in:
BJRambo 2017-11-28 20:01:28 +09:00
parent f4c19a3e0f
commit f3f40f6859
109 changed files with 976 additions and 976 deletions

View file

@ -18,7 +18,7 @@ class rssController extends rss
{
if(!$current_module_srl = Context::get('current_module_info')->module_srl)
{
return new Object();
return new BaseObject();
}
$oRssModel = getModel('rss');
@ -37,7 +37,7 @@ class rssController extends rss
Context::set('atom_url', $oRssModel->getRssURL('atom', Context::get('mid')));
}
return new Object();
return new BaseObject();
}
/**