diff options
| author | Richard Linden <none@none> | 2011-07-29 16:38:07 -0700 |
|---|---|---|
| committer | Richard Linden <none@none> | 2011-07-29 16:38:07 -0700 |
| commit | feddda6740f55c5e872be4b608d516e86e0c4182 (patch) | |
| tree | a766b97bc23a976feaa3387b43a189199eec1cb3 /indra/newview/llavataractions.cpp | |
| parent | 63a857f0c7f09c45eca9034c41ca1fdfc1ae95b5 (diff) | |
EXP-1056 FIX Web popup issues with Web Content Browser
changed browser id back to a string so it accepts malformed uuid strings
coming from webkit - "{uuid}" instead of "uuid"
Diffstat (limited to 'indra/newview/llavataractions.cpp')
| -rwxr-xr-x | indra/newview/llavataractions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llavataractions.cpp b/indra/newview/llavataractions.cpp index 03abde938f..f22b02093f 100755 --- a/indra/newview/llavataractions.cpp +++ b/indra/newview/llavataractions.cpp @@ -318,7 +318,7 @@ static void on_avatar_name_show_profile(const LLUUID& agent_id, const LLAvatarNa static LLCachedControl<LLRect> profile_rect(gSavedSettings, "WebProfileRect"); LLFloaterWebContent::create(LLFloaterWebContent::Params(). url(url). - id(agent_id). + id(agent_id.asString()). show_chrome(show_chrome). window_class("profile"). preferred_media_size(profile_rect)); |
