diff --git a/htroot/index.java b/htroot/index.java index 4ee9f438c..3c9596d1b 100644 --- a/htroot/index.java +++ b/htroot/index.java @@ -56,7 +56,7 @@ public class index { final boolean global = (post == null) ? true : post.get("resource", "global").equals("global"); final boolean authenticated = sb.adminAuthenticated(header) >= 2; - final int display = ((post == null) || (!authenticated)) ? 0 : post.getInt("display", 0); + final int display = (post == null) ? 0 : post.getInt("display", 0); final int searchoptions = (post == null) ? 0 : post.getInt("searchoptions", 0); final String former = (post == null) ? "" : post.get("former", ""); final int count = Math.min(100, (post == null) ? 10 : post.getInt("count", 10));