diff --git a/webinterface.py b/webinterface.py index 794b8ad2c..b67ff778f 100644 --- a/webinterface.py +++ b/webinterface.py @@ -5857,7 +5857,7 @@ def getRightColumnContent(baseDir: str, nickname: str, domainFull: str, translate['Newswire RSS Feed'] + '" title="' + \ translate['Newswire RSS Feed'] + '" src="/' + \ iconsDir + '/logorss.png" />\n' - if rssIconAtTop: + if rssIconAtTop and showHeaderImage: htmlStr += rssIconStr if showPublishButton: @@ -5881,7 +5881,8 @@ def getRightColumnContent(baseDir: str, nickname: str, domainFull: str, positiveVoting, iconsDir) htmlStr += newswireContentStr - if newswireContentStr and not rssIconAtTop: + rssAtBottom = not rssIconAtTop or not showHeaderImage + if newswireContentStr and rssAtBottom: htmlStr += '
' + rssIconStr return htmlStr