We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0edf6e2 commit 3e2866fCopy full SHA for 3e2866f
indra/newview/lllogininstance.cpp
@@ -602,13 +602,14 @@ std::string construct_start_string()
602
{
603
// a startup URL was specified
604
LLVector3 position = start_slurl.getPosition();
605
- std::string unescaped_start =
+ // NOTE - do not xml escape here, will get escaped properly later by LLSD::asXMLRPCValue()
606
+ // see secondlife/viewer#2395
607
+ start =
608
STRINGIZE( "uri:"
609
<< start_slurl.getRegion() << "&"
610
<< position[VX] << "&"
611
<< position[VY] << "&"
612
<< position[VZ]);
- start = LLStringFn::xml_encode(unescaped_start, true);
613
break;
614
}
615
case LLSLURL::HOME_LOCATION:
0 commit comments