Fix missing lang in trash module

This commit is contained in:
Kijin Sung 2020-12-19 22:49:33 +09:00
parent b5b74644e5
commit 9fc6378afe

View file

@ -16,6 +16,10 @@ class trashAdminView extends trash
*/
function init()
{
// 문서 및 댓글 모듈 lang 파일 로딩
Context::loadLang('./modules/document/lang');
Context::loadLang('./modules/comment/lang');
// 템플릿 경로 지정 (board의 경우 tpl에 관리자용 템플릿 모아놓음)
$template_path = sprintf("%stpl/",$this->module_path);
$this->setTemplatePath($template_path);