PHP8.0 에서 잘못된 경로로 설치된 모듈때문에 캐시파일 재생성을 할 수 없던 문제 고침

This commit is contained in:
BJRambo 2021-06-11 12:51:29 +09:00
parent 960d0018d0
commit 3d2987023c

View file

@ -99,7 +99,7 @@ class adminAdminController extends admin
{
$oModule = NULL;
$oModule = getClass($module->module);
if(method_exists($oModule, 'recompileCache'))
if($oModule && method_exists($oModule, 'recompileCache'))
{
$oModule->recompileCache();
}