Revision: 8054
http://svn.sourceforge.net/mailman/?rev=8054&view=rev
Author: msapiro
Date: 2006-10-11 09:50:24 -0700 (Wed, 11 Oct 2006)
Log Message:
-----------
Fixed admin.py so null VARHELP category is handled (1573393).
Modified Paths:
--------------
branches/Release_2_1-maint/mailman/Mailman/Cgi/admin.py
branches/Release_2_1-maint/mailman/NEWS
Modified: branches/Release_2_1-maint/mailman/Mailman/Cgi/admin.py
===================================================================
--- branches/Release_2_1-maint/mailman/Mailman/Cgi/admin.py 2006-10-09
22:19:23 UTC (rev 8053)
+++ branches/Release_2_1-maint/mailman/Mailman/Cgi/admin.py 2006-10-11
16:50:24 UTC (rev 8054)
@@ -319,10 +319,11 @@
elif len(reflist) == 3:
category, subcat, varname = reflist
options = mlist.GetConfigInfo(category, subcat)
- for i in options:
- if i and i[0] == varname:
- item = i
- break
+ if options:
+ for i in options:
+ if i and i[0] == varname:
+ item = i
+ break
# Print an error message if we couldn't find a valid one
if not item:
bad = _('No valid variable name found.')
Modified: branches/Release_2_1-maint/mailman/NEWS
===================================================================
--- branches/Release_2_1-maint/mailman/NEWS 2006-10-09 22:19:23 UTC (rev
8053)
+++ branches/Release_2_1-maint/mailman/NEWS 2006-10-11 16:50:24 UTC (rev
8054)
@@ -6,6 +6,10 @@
2.1.10 (XX-XXX-200X)
+ Bug fixes and other patches
+
+ - Fixed admin.py so null VARHELP category is handled (1573393).
+
2.1.9 (12-Sep-2006)
Security
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
_______________________________________________
Mailman-checkins mailing list
[email protected]
Unsubscribe:
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org