From dc49f057882c7616139087b23f1d579d9f05c80c Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 8 Oct 2020 11:40:45 +0100 Subject: [PATCH] Footer with icons --- webinterface.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/webinterface.py b/webinterface.py index bcb297be..22f62f75 100644 --- a/webinterface.py +++ b/webinterface.py @@ -5080,8 +5080,11 @@ def individualPostAsHtml(allowDownloads: bool, footerStr = '\n
\n' footerStr += replyStr + announceStr + likeStr + bookmarkStr + \ deleteStr + muteStr + editStr - footerStr += ' ' + publishedStr + '\n' + if not isNewsPost(postJsonObject): + footerStr += ' ' + publishedStr + '\n' + else: + footerStr += publishedStr + '\n' footerStr += '
\n' postIsSensitive = False