From 29c709602acc4db95c902baa7dd492add4e8dcb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Wed, 15 Aug 2012 22:03:58 +0200 Subject: [PATCH] [TMP] Removed statement for automatic subscription, temp. bzr revid: tde@openerp.com-20120815200358-0ld8cp85tozwcvfb --- addons/mail/mail_thread.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/mail/mail_thread.py b/addons/mail/mail_thread.py index 5bd9582b7cd..abf49067210 100644 --- a/addons/mail/mail_thread.py +++ b/addons/mail/mail_thread.py @@ -174,10 +174,10 @@ class mail_thread(osv.Model): - followers given by the monitored fields """ thread_id = super(mail_thread, self).create(cr, uid, vals, context=context) - fields = self.message_get_follower_fields(cr, uid, [thread_id], context=context) - print fields - if thread_id: - self.message_subscribe(cr, uid, [thread_id], [uid], context=context) + #fields = self.message_get_follower_fields(cr, uid, [thread_id], context=context) + #print fields + #if thread_id: + #self.message_subscribe(cr, uid, [thread_id], [uid], context=context) return thread_id def write(self, cr, uid, ids, vals, context=None):