diff --git a/app/views/memos/edit.html.erb b/app/views/memos/edit.html.erb
index c8510c8cf..6806e0996 100644
--- a/app/views/memos/edit.html.erb
+++ b/app/views/memos/edit.html.erb
@@ -21,10 +21,7 @@
$.ajax({
url:' /forums/'+'<%= @memo.forum_id.to_s %>'+'/memos/<%= @memo.id.to_s%>',
type:'put',
- data:{
- 'memo[subject]':$("#memo_subject").val(),
- 'memo[content]':$("#memo_content").val()
- },
+ data:$("#edit_memo").serialize(),
success:function(data){
},