From 882bcc3b33136b2c97e4b0a9fd6d12b61d4125e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Wed, 13 Feb 2008 07:15:21 +0000 Subject: [PATCH] show up to 100 search results --- htmlui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htmlui.c b/htmlui.c index 141ac412..0d3639e9 100644 --- a/htmlui.c +++ b/htmlui.c @@ -1819,8 +1819,8 @@ page_search(http_connection_t *hc, const char *remain, void *opaque) ev[c++] = e; qsort(ev, c, sizeof(event_t *), eventcmp); - if(c > 25) - c = 25; + if(c > 100) + c = 100; memset(&day, -1, sizeof(struct tm)); for(k = 0; k < c; k++) {