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

This commit is contained in:
zero 2007-05-29 07:05:30 +00:00
parent 87b16614a5
commit ea6d983ef6
13 changed files with 39 additions and 39 deletions

View file

@ -1,7 +1,7 @@
/* 레이아웃 신규 생성시 완료 후 요청하는 함수 */
function completeInsertLayout(ret_obj) {
var layout_srl = ret_obj['layout_srl'];
var url = location.href.setQuery('act','dispLayoutAdminModify').setQuery('layout_srl',layout_srl);
var url = current_url.setQuery('act','dispLayoutAdminModify').setQuery('layout_srl',layout_srl);
location.href = url;
}
@ -39,6 +39,6 @@ function doMenuManagement(menu_id) {
if(sel_obj.selectedIndex == 0) return;
var menu_srl = sel_obj.options[sel_obj.selectedIndex].value;
var url = location.href.setQuery('act','dispMenuAdminManagement').setQuery('menu_srl',menu_srl);
var url = current_url.setQuery('act','dispMenuAdminManagement').setQuery('menu_srl',menu_srl);
location.href = url;
}