diff options
author | Mark Sapiro <mark@msapiro.net> | 2013-07-18 20:21:19 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2013-07-18 20:21:19 -0700 |
commit | cb2733e029d419904f0fc488f5989beb3aa3ce71 (patch) | |
tree | abdca45179175839ceb296d57f3cc0496934c106 /Mailman/Defaults.py.in | |
parent | ef2334ca9d5c829f683b57f3928b96c2616162b9 (diff) | |
download | mailman2-cb2733e029d419904f0fc488f5989beb3aa3ce71.tar.gz mailman2-cb2733e029d419904f0fc488f5989beb3aa3ce71.tar.xz mailman2-cb2733e029d419904f0fc488f5989beb3aa3ce71.zip |
Backported the held message sorting to 2.1 and made it optional.
Diffstat (limited to '')
-rwxr-xr-x | Mailman/Defaults.py.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in index 6666d1e5..f1a5d907 100755 --- a/Mailman/Defaults.py.in +++ b/Mailman/Defaults.py.in @@ -1,6 +1,6 @@ # -*- python -*- -# Copyright (C) 1998-2012 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2013 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -247,6 +247,10 @@ BROKEN_BROWSER_REPLACEMENTS = {'\x8b': '‹', # single left angle quote '\xbe': '¾', # > plus high order bit '\xa2': '¢', # " plus high order bit } +# +# Shall the admindb held message summary display the grouping and sorting +# option radio buttons? +DISPLAY_HELD_SUMMARY_SORT_BUTTONS = No |