summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Mailman/htmlformat.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Mailman/htmlformat.py b/Mailman/htmlformat.py
index 65b72df27..ff2b7d926 100644
--- a/Mailman/htmlformat.py
+++ b/Mailman/htmlformat.py
@@ -310,6 +310,9 @@ class Document(Container):
'<HTML>',
'<HEAD>'
])
+ if mm_cfg.SHORTCUT_ICON:
+ output.append('<LINK REL="SHORTCUT ICON" HREF="%s">' %
+ (mm_cfg.IMAGE_LOGOS + mm_cfg.SHORTCUT_ICON))
if self.title:
output.append('%s<TITLE>%s</TITLE>' % (tab, self.title))
output.append('%s</HEAD>' % tab)