1 |
=== modified file 'Mailman/Cgi/confirm.py' |
2 |
--- Mailman/Cgi/confirm.py 2010-03-29 20:48:11 +0000 |
3 |
+++ Mailman/Cgi/confirm.py 2011-02-12 02:24:47 +0000 |
4 |
@@ -471,7 +471,7 @@ |
5 |
if fullname is None: |
6 |
fullname = _('<em>Not available</em>') |
7 |
else: |
8 |
- fullname = Utils.uncanonstr(fullname, lang) |
9 |
+ fullname = Utils.websafe(Utils.uncanonstr(fullname, lang)) |
10 |
table.AddRow([_("""Your confirmation is required in order to complete the |
11 |
unsubscription request from the mailing list <em>%(listname)s</em>. You |
12 |
are currently subscribed with |
13 |
@@ -573,7 +573,7 @@ |
14 |
if fullname is None: |
15 |
fullname = _('<em>Not available</em>') |
16 |
else: |
17 |
- fullname = Utils.uncanonstr(fullname, lang) |
18 |
+ fullname = Utils.websafe(Utils.uncanonstr(fullname, lang)) |
19 |
if globally: |
20 |
globallys = _('globally') |
21 |
else: |
22 |
@@ -814,7 +814,7 @@ |
23 |
if username is None: |
24 |
username = _('<em>not available</em>') |
25 |
else: |
26 |
- username = Utils.uncanonstr(username, lang) |
27 |
+ username = Utils.websafe(Utils.uncanonstr(username, lang)) |
28 |
|
29 |
table.AddRow([_("""Your membership in the %(realname)s mailing list is |
30 |
currently disabled due to excessive bounces. Your confirmation is |
31 |
|