mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
1. 가상 사이트 생성시 메뉴가 가상 사이트에 적합하게 연결되지 않는 문제 수정.
2. 관리자 페이지에서 언어파일 로드 오류로 인한 에러 메세지 출력되는 문제 수정 3. AJAX 호출시 같은 호출이 여러번 중복 호출되지 않도록 수정 git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6055 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
5fa0812df1
commit
4074c38674
4 changed files with 56 additions and 45 deletions
|
|
@ -111,10 +111,6 @@
|
|||
$layout_module_args->module_srls = implode(',',$modules);
|
||||
$output = executeQuery('layout.updateModuleLayout', $layout_module_args);
|
||||
|
||||
// 메뉴 XML 파일 생성
|
||||
$oMenuAdminController = &getAdminController('menu');
|
||||
$oMenuAdminController->makeXmlFile($info->menu_srl, $info->site_srl);
|
||||
|
||||
// 홈페이지 등록
|
||||
$args->site_srl = $info->site_srl;
|
||||
$args->title = $info->title;
|
||||
|
|
@ -180,6 +176,10 @@
|
|||
$oEditorController->insertComponent('poll_maker',true, $info->site_srl);
|
||||
$oEditorController->insertComponent('image_gallery',true, $info->site_srl);
|
||||
|
||||
// 메뉴 XML 파일 생성
|
||||
$oMenuAdminController = &getAdminController('menu');
|
||||
$oMenuAdminController->makeXmlFile($info->menu_srl, $info->site_srl);
|
||||
|
||||
$this->add('site_srl', $info->site_srl);
|
||||
$this->add('url', getSiteUrl($info->domain, ''));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
<th scope="row"><div>{$lang->cafe_title}</div></th>
|
||||
<td>
|
||||
{$homepage_info->title}
|
||||
<a href="{getSiteUrl($homepage_info->domain,'', 'module','homepage','act','dispHomepageManage')}" onclick="window.open(this.href); return false;" class="button"><span>{$lang->cmd_management}</span></a>
|
||||
<a href="{getSiteUrl($homepage_info->domain,'', 'act','dispHomepageManage')}" onclick="window.open(this.href); return false;" class="button"><span>{$lang->cmd_management}</span></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue