관리자 페이지에서 왼쪽 바로가기 메뉴의 언어별 출력을 위해 모듈 종류를 가져오는 부분에서 언어파일이 꼬이는 것 수정

git-svn-id: http://xe-core.googlecode.com/svn/trunk@1996 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-07-25 00:45:29 +00:00
parent dcff0c4a0b
commit 79e24b5fc3
2 changed files with 30 additions and 1 deletions

View file

@ -29,7 +29,7 @@
// 모듈 목록을 구해와서 숏컷에 해당하는 타이틀을 추출
$oModuleModel = &getModel('module');
$module_list = $oModuleModel->getModuleList();
$module_list = $oModuleModel->getModulesXmlInfo();
foreach($module_list as $key => $val) {
$module_name = $val->module;
if($shortcut_list[$module_name]) $shortcut_list[$module_name]->title = $val->title;