git-svn-id: http://xe-core.googlecode.com/svn/trunk@1245 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-04-19 08:39:57 +00:00
parent 312976465c
commit d0f90bf3c9
17 changed files with 164 additions and 66 deletions

View file

@ -531,11 +531,11 @@
**/
function dispBlogAdminCategoryInfo() {
// module_srl을 구함
$module_srl = Context::get('module_srl');
$module_srl = $this->module_info->module_srl;
// 메뉴의 정보를 가져옴
$oMenuModel = &getModel('blog');
$category_info = $oMenuModel->getCategory($module_srl);
// 카테고리 정보를 가져옴
$oBlogModel = &getModel('blog');
$category_info = $oBlogModel->getCategory($module_srl);
Context::set('category_info', $category_info);