Don't show "Saved" tab on front page to unlogged users.

It 404s right now and is only there for legacy reasons anyway.
This commit is contained in:
Neil Williams
2012-05-31 23:56:25 -07:00
committed by Keith Mitchell
parent f72e1fbccf
commit c517c41501

View File

@@ -381,7 +381,7 @@ class Reddit(Templated):
NamedButton('top'),
]
if c.user_is_loggedin or not g.read_only_mode:
if c.user_is_loggedin:
main_buttons.append(NamedButton('saved', False))
more_buttons = []