diff options
Diffstat (limited to '')
| -rw-r--r-- | Mailman/Handlers/Hold.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Handlers/Hold.py b/Mailman/Handlers/Hold.py index 00a5fff8f..b19eab9cb 100644 --- a/Mailman/Handlers/Hold.py +++ b/Mailman/Handlers/Hold.py @@ -80,7 +80,7 @@ class Administrivia(HandlerAPI.MessageHeld): return """Please do *not* post administrative requests to the mailing list. If you wish to subscribe, visit %(listurl)s or send a message with the word `help' in it to the request address, %(request)s, for further -instructions.""" % {'listurl': mlist.GetAbsoluteScriptURL('listinfo'), +instructions.""" % {'listurl': mlist.GetScriptURL('listinfo', absolute=1), 'request': mlist.GetRequestEmail(), } @@ -223,7 +223,7 @@ def hold_for_approval(mlist, msg, msgdata, exc): 'reason' : reason, 'sender' : sender, 'subject' : msg.get('subject', '(no subject)'), - 'admindb_url': mlist.GetAbsoluteScriptURL('admindb'), + 'admindb_url': mlist.GetScriptURL('admindb', absolute=1), } if mlist.admin_immed_notify: # get the text from the template |
