diff options
| author | bwarsaw | 2000-08-01 23:02:28 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-08-01 23:02:28 +0000 |
| commit | 3c23b066ab18f669ab5a5540756ab515a347beaa (patch) | |
| tree | 893027fd6342f8e9787382ad6e32592e5706c79e | |
| parent | a321329f334e80d3dbea596a1c8509685371a287 (diff) | |
| download | mailman-3c23b066ab18f669ab5a5540756ab515a347beaa.tar.gz mailman-3c23b066ab18f669ab5a5540756ab515a347beaa.tar.zst mailman-3c23b066ab18f669ab5a5540756ab515a347beaa.zip | |
Administrivia.rejection_notice(), hold_for_approval():
GetAbsoluteScriptURL() => GetScriptURL(..., absolute=1)
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 |
