summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorLeyla Farazha <leyla@lindenlab.com>2010-08-05 09:53:10 -0700
committerLeyla Farazha <leyla@lindenlab.com>2010-08-05 09:53:10 -0700
commit3057bb08be2b49553949a7aebb3dd3eb33c9de46 (patch)
tree5c78cc19006662721fbf070164354ea929b88205 /indra/newview
parentc7d49b4cb22ceac5778a8e178aa6ce62fa42c72e (diff)
DEV-52475 Avatar picker only shows 10 results for search
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llfloateravatarpicker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloateravatarpicker.cpp b/indra/newview/llfloateravatarpicker.cpp
index 7ed6539387..8c39a8a2df 100644
--- a/indra/newview/llfloateravatarpicker.cpp
+++ b/indra/newview/llfloateravatarpicker.cpp
@@ -435,7 +435,7 @@ void LLFloaterAvatarPicker::find()
{
url += "/";
}
- url += "?names=";
+ url += "?page_size=100&names=";
url += LLURI::escape(text);
llinfos << "avatar picker " << url << llendl;
LLHTTPClient::get(url, new LLAvatarPickerResponder(mQueryID));