From 3d8a1c4398f4ec05a579bd905ad4ef2dd7e1f2c8 Mon Sep 17 00:00:00 2001 From: bwarsaw Date: Tue, 31 Dec 2002 03:17:55 +0000 Subject: Inconsequential change since I forgot a checkin message on the last mod: ProcessConfirmation(): In the Pending.SUBSCRIPTION section, move the concatenation of the context with the userdesc to before we extract the addr, fullname, password, digest, and lang. This is so we can correctly pick up any changes made in the confirmation page, e.g. the user's preferred language. --- Mailman/MailList.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mailman/MailList.py b/Mailman/MailList.py index a6433d351..8cffef8c9 100644 --- a/Mailman/MailList.py +++ b/Mailman/MailList.py @@ -1057,7 +1057,7 @@ class MailList(HTMLFormatter, Deliverer, ListAdmin, # If confirmation comes from the web, context should be a # UserDesc instance which contains overrides of the original # subscription information. If it comes from email, then - # context is a Message and isn't relevant. + # context is a Message and isn't relevant, so ignore it. if isinstance(context, UserDesc): userdesc += context addr = userdesc.address -- cgit v1.3.1