diff options
| author | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2014-05-29 13:05:09 +0300 | 
|---|---|---|
| committer | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2014-05-29 13:05:09 +0300 | 
| commit | 0fdff14b664f84658580f2d2595261832406fe76 (patch) | |
| tree | 6aeb87b846aad53f9aaac9398234c56431b0b578 | |
| parent | effd423ec5567eb03b1e26f1531e24294fa2e7c7 (diff) | |
MAINT-4094 FIXED Use unescaped region name in the notification
| -rwxr-xr-x | indra/newview/llurldispatcher.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/indra/newview/llurldispatcher.cpp b/indra/newview/llurldispatcher.cpp index 615064c782..78268944fc 100755 --- a/indra/newview/llurldispatcher.cpp +++ b/indra/newview/llurldispatcher.cpp @@ -278,13 +278,13 @@ public:  							   tokens[2].asReal(),   							   tokens[3].asReal());  		} -		 -		LLSD args; -		args["LOCATION"] = tokens[0];  		// Region names may be %20 escaped.  		std::string region_name = LLURI::unescape(tokens[0]); +		LLSD args; +		args["LOCATION"] = region_name; +  		LLSD payload;  		payload["region_name"] = region_name;  		payload["callback_url"] = LLSLURL(region_name, coords).getSLURLString(); | 
