From b6dceed421b404c7020ebc3ff8b8fbfe7b68e865 Mon Sep 17 00:00:00 2001 From: bwarsaw Date: Fri, 26 Nov 1999 02:54:01 +0000 Subject: ObscureEmail(), UnobscureEmail(): change munging from __at__ to --at-- because for some reason IE5 seems to corrupt the former under at least some situations. --- Mailman/Utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mailman/Utils.py b/Mailman/Utils.py index f67bdc6b2..3a55695e1 100644 --- a/Mailman/Utils.py +++ b/Mailman/Utils.py @@ -396,13 +396,13 @@ def ObscureEmail(addr, for_text=0): if for_text: return string.replace(addr, "@", " at ") else: - return string.replace(addr, "@", "__at__") + return string.replace(addr, "@", "--at--") def UnobscureEmail(addr): """Invert ObscureEmail() conversion.""" # Contrived to act as an identity operation on already-unobscured # emails, so routines expecting obscured ones will accept both. - return string.replace(addr, "__at__", "@") + return string.replace(addr, "--at--", "@") -- cgit v1.2.3-70-g09d2