From 40358ce7a0cae9fc207291afbad9ef0d9b37ca04 Mon Sep 17 00:00:00 2001 From: tkikuchi <> Date: Thu, 10 Mar 2005 23:59:18 +0000 Subject: Use of websafe() here is too severe. Only '<' is escaped. --- Mailman/Gui/GUIBase.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Mailman') diff --git a/Mailman/Gui/GUIBase.py b/Mailman/Gui/GUIBase.py index 88288afa..3107576b 100644 --- a/Mailman/Gui/GUIBase.py +++ b/Mailman/Gui/GUIBase.py @@ -123,7 +123,8 @@ class GUIBase: pass def _escape(self, property, value): - return Utils.websafe(value) + value = value.replace('<', '<') + return value def handleForm(self, mlist, category, subcat, cgidata, doc): for item in self.GetConfigInfo(mlist, category, subcat): -- cgit v1.2.3