diff options
| author | Leyla Farazha <leyla@lindenlab.com> | 2010-08-05 09:53:10 -0700 | 
|---|---|---|
| committer | Leyla Farazha <leyla@lindenlab.com> | 2010-08-05 09:53:10 -0700 | 
| commit | 3057bb08be2b49553949a7aebb3dd3eb33c9de46 (patch) | |
| tree | 5c78cc19006662721fbf070164354ea929b88205 | |
| parent | c7d49b4cb22ceac5778a8e178aa6ce62fa42c72e (diff) | |
DEV-52475 Avatar picker only shows 10 results for search
| -rw-r--r-- | indra/newview/llfloateravatarpicker.cpp | 2 | 
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));  | 
