Merge branch 'handlerupdate' of github.com:webnotes/erpnext into handlerupdate
diff --git a/erpnext/utilities/page/messages/messages.py b/erpnext/utilities/page/messages/messages.py
index 900fa6c..3a407dd 100644
--- a/erpnext/utilities/page/messages/messages.py
+++ b/erpnext/utilities/page/messages/messages.py
@@ -56,6 +56,12 @@
@webnotes.whitelist()
def post(arg=None):
"""post message"""
+ if arg:
+ import json
+ arg = json.loads(arg)
+ else:
+ arg = {}
+ arg.update(webnotes.form_dict)
from webnotes.model.doc import Document
d = Document('Comment Widget Record')
d.comment = arg['txt']