From 61c2a611741ff93a881c8c183c5cb084efd25dcc Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 6 Sep 2019 10:22:09 +0100 Subject: [PATCH] Show icons if authorized --- webinterface.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webinterface.py b/webinterface.py index ed90283a1..a6052be9c 100644 --- a/webinterface.py +++ b/webinterface.py @@ -1919,7 +1919,7 @@ def htmlIndividualPost(baseDir: str,session,wfRequest: {},personCache: {}, \ nickname,domain,port,postJsonObject, \ None,True,False, \ httpPrefix,projectVersion, \ - False,False,False,False)+postStr + False,authorized,False,False)+postStr # show the following posts postFilename=locatePost(baseDir,nickname,domain,messageId) @@ -1936,7 +1936,8 @@ def htmlIndividualPost(baseDir: str,session,wfRequest: {},personCache: {}, \ individualPostAsHtml(None, \ baseDir,session,wfRequest,personCache, \ nickname,domain,port,item,None,True,False, \ - httpPrefix,projectVersion,False,False,False,False) + httpPrefix,projectVersion, \ + False,authorized,False,False) return htmlHeader()+postStr+htmlFooter() def htmlPostReplies(baseDir: str,session,wfRequest: {},personCache: {}, \