diff --git a/webinterface.py b/webinterface.py index fc8e5dcb7..35ff6a11c 100644 --- a/webinterface.py +++ b/webinterface.py @@ -5613,7 +5613,7 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str, translate['RSS feed for this site'] + \ '" title="' + translate['RSS feed for this site'] + \ '" src="/' + iconsDir + '/logorss.png" />\n' - if rssIconAtTop and showHeaderImage: + if rssIconAtTop: htmlStr += rssIconStr if editImageClass == 'leftColEdit': @@ -5622,7 +5622,7 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str, if showHeaderImage: htmlStr += '
\n' - if rssIconAtTop and not showHeaderImage: + if rssIconAtTop: htmlStr += '
' linksFilename = baseDir + '/accounts/links.txt' @@ -5672,8 +5672,7 @@ def getLeftColumnContent(baseDir: str, nickname: str, domainFull: str, '

' + lineStr + '

\n' linksFileContainsEntries = True - rssAtBottom = not rssIconAtTop or not showHeaderImage - if linksFileContainsEntries and rssAtBottom: + if linksFileContainsEntries and not rssIconAtTop: htmlStr += '
' + rssIconStr + '
' return htmlStr