Fix missing action_forward in integration_search module

This commit is contained in:
Kijin Sung 2020-06-17 16:56:55 +09:00
parent f92fc9c980
commit 3bbb175cd1

View file

@ -38,6 +38,11 @@ class integration_search extends ModuleObject
if(is_dir($template_path)) return true;
}
}
if (!$oModuleModel->getActionForward('IS'))
{
return true;
}
return false;
}
@ -65,6 +70,12 @@ class integration_search extends ModuleObject
}
}
}
if (!$oModuleModel->getActionForward('IS'))
{
$oModuleController = getController('module');
$oModuleController->insertActionForward('integration_search', 'view', 'IS');
}
}
/**