summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonroe Linden <monroe@lindenlab.com>2010-09-20 18:02:23 -0700
committerMonroe Linden <monroe@lindenlab.com>2010-09-20 18:02:23 -0700
commita20a98454de522eba4da17881b85a0f16bb3c116 (patch)
treec325363c9ffd3182e2c449333ccae77c204cd568
parent325991a002894011b1da8dd54b16b4cb15f77554 (diff)
Fix one variant of LLWeb::loadURLExternal() not passing through the uuid to the other variant.
-rw-r--r--indra/newview/llweb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llweb.cpp b/indra/newview/llweb.cpp
index 912413d06a..73a37a6993 100644
--- a/indra/newview/llweb.cpp
+++ b/indra/newview/llweb.cpp
@@ -106,7 +106,7 @@ void LLWeb::loadURLInternal(const std::string &url, const std::string& target, c
// static
void LLWeb::loadURLExternal(const std::string& url, const std::string& uuid)
{
- loadURLExternal(url, true);
+ loadURLExternal(url, true, uuid);
}