Fix the default object error

This commit is contained in:
BJRambo 2020-09-03 23:26:13 +09:00
parent b6af4d8cbb
commit f931185ee0

View file

@ -26,6 +26,10 @@ class communicationModel extends communication
{
$oModuleModel = getModel('module');
$config = $oModuleModel->getModuleConfig('communication');
if(!$config)
{
$config = new stdClass();
}
if(!$config->skin)
{