On 09/27/2016 04:31 PM, Christopher Adams wrote:
>
> So, the first chunk is '0' and then the link goes to chunk '1', but it
> links back to the top-level admin page.
...
> Is this a Feature or a Bug ?
It is this bug <https://bugs.launchpad.net/mailman/+bug/1604544> which
was fixed by the attached patch.
--
Mark Sapiro <[email protected]> The highway is for gamblers,
San Francisco Bay Area, California better use your sense - B. Dylan
=== modified file 'Mailman/Cgi/admin.py'
--- Mailman/Cgi/admin.py 2016-07-14 21:27:49 +0000
+++ Mailman/Cgi/admin.py 2016-07-19 19:23:32 +0000
@@ -1010,6 +1010,9 @@
if regexp:
findfrag = '&findmember=' + urllib.quote(regexp)
url = adminurl + '/members?letter=' + letter + findfrag
+ if isinstance(url, unicode):
+ url = url.encode(Utils.GetCharSet(mlist.preferred_language),
+ errors='ignore')
if letter == bucket:
show = Bold('[%s]' % letter.upper()).Format()
else:
------------------------------------------------------
Mailman-Users mailing list [email protected]
https://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe:
https://mail.python.org/mailman/options/mailman-users/archive%40jab.org