summaryrefslogtreecommitdiffstats
path: root/install/static/search.js
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2010-10-19 16:54:46 -0400
committerEndi Sukma Dewata <edewata@redhat.com>2010-10-19 21:46:31 -0400
commitdf97bce34904e2b135a4b98d5cd5d59c2bb6b9ac (patch)
treef48eebb15b030d8db722b2ec30becd6d717141b3 /install/static/search.js
parentd8b4e68221f32fa95c149fc125850f042a38e537 (diff)
downloadfreeipa-df97bce34904e2b135a4b98d5cd5d59c2bb6b9ac.tar.gz
freeipa-df97bce34904e2b135a4b98d5cd5d59c2bb6b9ac.tar.xz
freeipa-df97bce34904e2b135a4b98d5cd5d59c2bb6b9ac.zip
Remove size limits.
Now use the system wide settings instead of hardcoded size limits.
Diffstat (limited to 'install/static/search.js')
-rw-r--r--install/static/search.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/install/static/search.js b/install/static/search.js
index 91ee1bd8e..e4efcb0ef 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);