diff --git a/daemon.py b/daemon.py index 30dadca06..1eedc9b7c 100644 --- a/daemon.py +++ b/daemon.py @@ -9548,7 +9548,8 @@ class PubServer(BaseHTTPRequestHandler): self.server.domainFull, self.server.httpPrefix, self.server.translate, - timelinePath).encode('utf-8') + timelinePath, + authorized).encode('utf-8') self._set_headers('text/html', len(msg), cookie, callingDomain) self._write(msg) self.server.GETbusy = False diff --git a/webinterface.py b/webinterface.py index 7e02237bf..5953e240f 100644 --- a/webinterface.py +++ b/webinterface.py @@ -5928,7 +5928,7 @@ def getRightColumnContent(baseDir: str, nickname: str, domainFull: str, def htmlLinksMobile(cssCache: {}, baseDir: str, nickname: str, domainFull: str, httpPrefix: str, translate, - timelinePath: str) -> str: + timelinePath: str, authorized: bool) -> str: """Show the left column links within mobile view """ htmlStr = ''