From df97bce34904e2b135a4b98d5cd5d59c2bb6b9ac Mon Sep 17 00:00:00 2001 From: Adam Young Date: Tue, 19 Oct 2010 16:54:46 -0400 Subject: Remove size limits. Now use the system wide settings instead of hardcoded size limits. --- install/static/search.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'install/static/search.js') diff --git a/install/static/search.js b/install/static/search.js index 91ee1bd8..e4efcb0e 100644 --- a/install/static/search.js +++ b/install/static/search.js @@ -279,8 +279,8 @@ function search_display(obj_name, data) if (data.result.truncated) { tfoot.text( - 'More than ' + ipa_record_limit + ' results returned. ' + - 'First ' + ipa_record_limit + ' results shown.' + 'Query returned results than configured size limit will show.' + + 'First ' + data.result.count + ' results shown.' ); } else { tfoot.text(data.result.summary); -- cgit