------------------------------------------------------------ revno: 1460 fixes bug: https://launchpad.net/bugs/1308655 committer: Mark Sapiro <msap...@value.net> branch nick: 2.1 timestamp: Wed 2014-04-16 14:38:47 -0700 message: Fixed a long standing issue in which a notice sent to a user whose language is other than that of the list can cause subsequent things which should be in the list's language to be in the user's language instead. modified: Mailman/MailList.py NEWS
-- lp:mailman/2.1 https://code.launchpad.net/~mailman-coders/mailman/2.1 Your team Mailman Checkins is subscribed to branch lp:mailman/2.1. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman/2.1/+edit-subscription
=== modified file 'Mailman/MailList.py' --- Mailman/MailList.py 2014-04-15 19:59:48 +0000 +++ Mailman/MailList.py 2014-04-16 21:38:47 +0000 @@ -1049,7 +1049,8 @@ # And send an acknowledgement to the user... if userack: self.SendUnsubscribeAck(emailaddr, userlang) - # ...and to the administrator + # ...and to the administrator in the correct language. (LP: #1308655) + i18n.set_language(self.preferred_language) if admin_notif: realname = self.real_name subject = _('%(realname)s unsubscribe notification') === modified file 'NEWS' --- NEWS 2014-04-16 02:41:17 +0000 +++ NEWS 2014-04-16 21:38:47 +0000 @@ -43,6 +43,11 @@ Bug Fixes and other patches + - Fixed a long standing issue in which a notice sent to a user whose + language is other than that of the list can cause subsequent things + which should be in the list's language to be in the user's language + instead. (LP: #1308655) + - Fixed the admin Membership List so a search string if any is not lost when visiting subsequent fragments of a chunked list. (LP: #1307454)
_______________________________________________ Mailman-checkins mailing list Mailman-checkins@python.org Unsubscribe: https://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org