summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Mailman/Cgi/admin.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/Mailman/Cgi/admin.py b/Mailman/Cgi/admin.py
index 32d59c3d3..94d99bd34 100644
--- a/Mailman/Cgi/admin.py
+++ b/Mailman/Cgi/admin.py
@@ -298,10 +298,13 @@ def FormatConfiguration(doc, lst, category, category_suffix):
form = Form(lst.GetRelativeScriptURL('admin'))
doc.AddItem(form)
+ if category == 'general':
+ andpassmsg = " (You can change your password there, too.)"
+ else:
+ andpassmsg = ""
form.AddItem("Make your changes below, and then submit them using the"
- " bottom at the bottom. (You can change your password"
- " there, too.)<p>")
-
+ " bottom at the bottom.%s<p>"
+ % andpassmsg)
form.AddItem(FormatOptionsSection(category, lst))
if category == 'general':