Update feed on submission
diff --git a/erpnext/home/__init__.py b/erpnext/home/__init__.py
index 75556e3..5f9c447 100644
--- a/erpnext/home/__init__.py
+++ b/erpnext/home/__init__.py
@@ -66,7 +66,7 @@
 
 def update_feed(doc, method=None):   
 	"adds a new feed"
-	if method=='on_update':
+	if method in ['on_update', 'on_submit']:
 		subject, color = feed_dict.get(doc.doctype, [None, None])
 		if subject:			
 			make_feed('', doc.doctype, doc.name, doc.owner, subject % doc.fields, color)