diff --git a/webinterface.py b/webinterface.py index d36ae0c1b..c5516a12e 100644 --- a/webinterface.py +++ b/webinterface.py @@ -5869,7 +5869,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 and showHeaderImage: + if rssIconAtTop: htmlStr += rssIconStr # show publish icon at top @@ -5897,8 +5897,7 @@ def getRightColumnContent(baseDir: str, nickname: str, domainFull: str, htmlStr += newswireContentStr # show the rss icon at the bottom, typically on the right hand side - rssAtBottom = not rssIconAtTop or (not showHeaderImage and not authorized) - if newswireContentStr and rssAtBottom: + if newswireContentStr and not rssIconAtTop: htmlStr += '
' + rssIconStr + '
' return htmlStr