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

@ -27,7 +27,7 @@ function completeDocumentInserted(ret_obj) {
alert(message);
var url = location.href.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
if(category_srl) url = url.setQuery('category',category_srl);
location.href = url;
}
@ -126,6 +126,6 @@ function doChangeCategory(sel_obj, url) {
var category_srl = sel_obj.options[sel_obj.selectedIndex].value;
if(!category_srl) location.href=url;
else {
location.href = location.href.setQuery('category',category_srl);
location.href = current_url.setQuery('category',category_srl);
}
}