diff --git a/webinterface.py b/webinterface.py index 59706b6c..f289008b 100644 --- a/webinterface.py +++ b/webinterface.py @@ -5151,7 +5151,8 @@ def htmlHighlightLabel(label: str, highlight: bool) -> str: def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str, - httpPrefix: str, translate: {}) -> str: + httpPrefix: str, translate: {}, + iconsDir: str) -> str: """Returns html content for the left column """ htmlStr = \ @@ -5159,8 +5160,8 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str, ' ' + \ - '\n' + \ + '\n' + \ ' \n' return htmlStr @@ -5483,7 +5484,7 @@ def htmlTimeline(defaultTimeline: str, # left column leftColumnStr = \ getLeftColumnContent(baseDir, nickname, domainFull, - httpPrefix, translate) + httpPrefix, translate, iconsDir) tlStr += ' ' + leftColumnStr + '\n' # center column containing posts tlStr += ' \n'