From 55fcb7ddafda21f602e6685f08735f5b4ac5ba9d Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 12 Aug 2014 12:14:02 -0700 Subject: [PATCH] web: forums: enable "jump to post" if not logged in --- html/user/forum_thread.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/user/forum_thread.php b/html/user/forum_thread.php index 088ec9b615..da74f7f813 100644 --- a/html/user/forum_thread.php +++ b/html/user/forum_thread.php @@ -99,7 +99,7 @@ if ($temp_sort_style) { } } -if ($logged_in_user && $logged_in_user->prefs->jump_to_unread){ +if (!$logged_in_user || $logged_in_user->prefs->jump_to_unread){ page_head($title, 'jumpToUnread();'); } else { page_head($title);