모바일 문서 페이지 접속시 PC와 동일한 스킨 사용시 템플릿 문서를 찾지 못하는 문제 고침

This commit is contained in:
BJRambo 2021-02-06 12:32:29 +09:00
parent 0f33fa6539
commit 9cac59095b

View file

@ -121,6 +121,7 @@ class pageMobile extends pageView
{
$template_path = sprintf("%sskins/%s/",$this->module_path, 'default');
}
$page_content = $oTemplate->compile($template_path, 'content');
}
else
{
@ -129,10 +130,9 @@ class pageMobile extends pageView
{
$template_path = sprintf("%sm.skins/%s/",$this->module_path, 'default');
}
$page_content = $oTemplate->compile($template_path, 'mobile');
}
$page_content = $oTemplate->compile($template_path, 'mobile');
return $page_content;
}