Log message for revision 68645:
        - Collector #2063: cleaned up some mess in MailHost.sendTemplate()
  

Changed:
  U   Zope/branches/2.9/doc/CHANGES.txt
  U   Zope/branches/2.9/lib/python/Products/MailHost/MailHost.py

-=-
Modified: Zope/branches/2.9/doc/CHANGES.txt
===================================================================
--- Zope/branches/2.9/doc/CHANGES.txt   2006-06-15 09:43:53 UTC (rev 68644)
+++ Zope/branches/2.9/doc/CHANGES.txt   2006-06-15 09:44:48 UTC (rev 68645)
@@ -27,6 +27,8 @@
 
       - Collector #2073: fixed misbehaviour of OFS.Owned.changeOwnership
 
+      - Collector #2063: cleaned up some mess in MailHost.sendTemplate()
+
   Zope 2.9.3 (2006/05/13)
 
    Bugs fixed

Modified: Zope/branches/2.9/lib/python/Products/MailHost/MailHost.py
===================================================================
--- Zope/branches/2.9/lib/python/Products/MailHost/MailHost.py  2006-06-15 
09:43:53 UTC (rev 68644)
+++ Zope/branches/2.9/lib/python/Products/MailHost/MailHost.py  2006-06-15 
09:44:48 UTC (rev 68645)
@@ -125,7 +125,7 @@
         messageText = mtemplate(self, trueself.REQUEST)
         messageText, mto, mfrom = _mungeHeaders( messageText, mto, mfrom)
         messageText=_encode(messageText, encode)
-        self._send(mfrom, mto, messageText)
+        trueself._send(mfrom, mto, messageText)
 
         if not statusTemplate: return "SEND OK"
 

_______________________________________________
Zope-Checkins maillist  -  Zope-Checkins@zope.org
http://mail.zope.org/mailman/listinfo/zope-checkins

Reply via email to