mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-02 00:32:15 +09:00
bug fix
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4906 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
ab71c6d468
commit
beabe56505
6 changed files with 13 additions and 4 deletions
|
|
@ -166,6 +166,7 @@
|
|||
// 검색과 정렬을 위한 변수 설정
|
||||
$args->search_target = Context::get('search_target'); ///< 검색 대상 (title, contents...)
|
||||
$args->search_keyword = Context::get('search_keyword'); ///< 검색어
|
||||
|
||||
if($this->module_info->use_category=='Y') $args->category_srl = Context::get('category'); ///< 카테고리 사용시 선택된 카테고리
|
||||
|
||||
$args->sort_index = Context::get('sort_index');
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@ function doChangeCategory() {
|
|||
var sel_obj = xGetElementById("board_category");
|
||||
var sel_idx = sel_obj.selectedIndex;
|
||||
var category_srl = sel_obj.options[sel_idx].value;
|
||||
location.href = current_url.setQuery('category',category_srl);
|
||||
location.href = decodeURI(current_url).setQuery('category',category_srl);
|
||||
}
|
||||
|
||||
/* 스크랩 */
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@ function doChangeCategory() {
|
|||
var sel_obj = xGetElementById("board_category");
|
||||
var sel_idx = sel_obj.selectedIndex;
|
||||
var category_srl = sel_obj.options[sel_idx].value;
|
||||
location.href = current_url.setQuery('category',category_srl);
|
||||
location.href = decodeURI(current_url).setQuery('category',category_srl);
|
||||
}
|
||||
|
||||
/* 스크랩 */
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@ function doChangeCategory() {
|
|||
var sel_obj = xGetElementById("board_category");
|
||||
var sel_idx = sel_obj.selectedIndex;
|
||||
var category_srl = sel_obj.options[sel_idx].value;
|
||||
location.href = current_url.setQuery('category',category_srl);
|
||||
location.href = decodeURI(current_url).setQuery('category',category_srl);
|
||||
}
|
||||
|
||||
/* 스크랩 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue