summaryrefslogtreecommitdiff
path: root/Mailman/htmlformat.py
diff options
context:
space:
mode:
authorbwarsaw2002-01-30 17:14:37 +0000
committerbwarsaw2002-01-30 17:14:37 +0000
commit1dc977c3c18ce075f6f335db0f61600857d509fa (patch)
treef6ee464cf7cdab088db67f83b174dfbbdf2eefc0 /Mailman/htmlformat.py
parent6b19975168afa105b00021235dde8b0f119f64a6 (diff)
downloadmailman-1dc977c3c18ce075f6f335db0f61600857d509fa.tar.gz
mailman-1dc977c3c18ce075f6f335db0f61600857d509fa.tar.zst
mailman-1dc977c3c18ce075f6f335db0f61600857d509fa.zip
Diffstat (limited to 'Mailman/htmlformat.py')
-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)