From 08dcf3e5d1662bfe2de1e908cdd8309c9a814bce Mon Sep 17 00:00:00 2001 From: Michael Peter Christen Date: Thu, 26 Apr 2012 00:27:21 +0200 Subject: [PATCH] hack to get all results if the actual number is between 10 and 64 --- htroot/js/yacyinteractive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htroot/js/yacyinteractive.js b/htroot/js/yacyinteractive.js index 71bcde91d..07516e384 100644 --- a/htroot/js/yacyinteractive.js +++ b/htroot/js/yacyinteractive.js @@ -105,7 +105,7 @@ function resultNavigation() { if (maximumRecords != 10 && totalResults >= 10) html += ""; if (maximumRecords != 100 && totalResults >= 100) html += ""; if (maximumRecords != 1000 && totalResults >= 1000) html += ""; - if (totalResults <= 10000 && maximumRecords < totalResults) html += ""; + if (totalResults <= 10000 && maximumRecords < totalResults) html += ""; html += ""; // for inline html += ""; // for result statistic wrapper } else {