소스 검색

url encode

master
Pascal Gloor 5 년 전
부모
커밋
d97edd6f7e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      www/js/autodoc.js

+ 1
- 1
www/js/autodoc.js 파일 보기

@@ -489,7 +489,7 @@ function home_modal_close(docid) {
function document_update_name(docid, name) {
$.ajax({
type: "PATCH",
url: conf.openapi + "/documents/" + docid + "?name=" + name,
url: conf.openapi + "/documents/" + docid + "?name=" + encodeURIComponent(name),
data: null,
success: function(data) {


Loading…
취소
저장