mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Add patch missed in previous commit.
Also note that previous commit dropped MD5 from distinfo. Pointyhat to: wxs@ :(
This commit is contained in:
parent
6496c537f6
commit
fe5eb7fd47
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=270607
1 changed files with 29 additions and 0 deletions
29
mail/mailman/files/patch-Mailman__Cgi__confirm.py
Normal file
29
mail/mailman/files/patch-Mailman__Cgi__confirm.py
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
--- ./Mailman/Cgi/confirm.py.orig 2010-09-20 14:18:27.000000000 -0400
|
||||||
|
+++ ./Mailman/Cgi/confirm.py 2011-03-10 09:33:04.506813466 -0500
|
||||||
|
@@ -471,7 +471,7 @@
|
||||||
|
if fullname is None:
|
||||||
|
fullname = _('<em>Not available</em>')
|
||||||
|
else:
|
||||||
|
- fullname = Utils.uncanonstr(fullname, lang)
|
||||||
|
+ fullname = Utils.websafe(Utils.uncanonstr(fullname, lang))
|
||||||
|
table.AddRow([_("""Your confirmation is required in order to complete the
|
||||||
|
unsubscription request from the mailing list <em>%(listname)s</em>. You
|
||||||
|
are currently subscribed with
|
||||||
|
@@ -573,7 +573,7 @@
|
||||||
|
if fullname is None:
|
||||||
|
fullname = _('<em>Not available</em>')
|
||||||
|
else:
|
||||||
|
- fullname = Utils.uncanonstr(fullname, lang)
|
||||||
|
+ fullname = Utils.websafe(Utils.uncanonstr(fullname, lang))
|
||||||
|
if globally:
|
||||||
|
globallys = _('globally')
|
||||||
|
else:
|
||||||
|
@@ -814,7 +814,7 @@
|
||||||
|
if username is None:
|
||||||
|
username = _('<em>not available</em>')
|
||||||
|
else:
|
||||||
|
- username = Utils.uncanonstr(username, lang)
|
||||||
|
+ username = Utils.websafe(Utils.uncanonstr(username, lang))
|
||||||
|
|
||||||
|
table.AddRow([_("""Your membership in the %(realname)s mailing list is
|
||||||
|
currently disabled due to excessive bounces. Your confirmation is
|
Loading…
Add table
Reference in a new issue