From 855fd156b067ff08b020eb22d7d8c0d1d3960de3 Mon Sep 17 00:00:00 2001
From: callum <none@none>
Date: Wed, 29 Dec 2010 13:35:23 -0800
Subject: [PATCH] SOCIAL-405 FIX Always make Web profiles open in internal Web
 content floater regardless of prefs

---
 indra/newview/llavataractions.cpp | 2 +-
 indra/newview/llpanelprofile.cpp  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/indra/newview/llavataractions.cpp b/indra/newview/llavataractions.cpp
index aea7f002229..f3f0cde2213 100755
--- a/indra/newview/llavataractions.cpp
+++ b/indra/newview/llavataractions.cpp
@@ -315,7 +315,7 @@ void LLAvatarActions::showProfile(const LLUUID& id)
 			std::string agent_name = LLCacheName::buildUsername(full_name);
 			llinfos << "opening web profile for " << agent_name << llendl;		
 			std::string url = getProfileURL(agent_name);
-			LLWeb::loadURLInternal(url);
+			LLWeb::loadWebURLInternal(url);
 		}
 		else
 		{
diff --git a/indra/newview/llpanelprofile.cpp b/indra/newview/llpanelprofile.cpp
index 170e8e9846b..4f13c0c022e 100755
--- a/indra/newview/llpanelprofile.cpp
+++ b/indra/newview/llpanelprofile.cpp
@@ -61,7 +61,7 @@ class LLProfileHandler : public LLCommandHandler
 		std::string agent_name = params[0];
 		llinfos << "Profile, agent_name " << agent_name << llendl;
 		std::string url = getProfileURL(agent_name);
-		LLWeb::loadURLInternal(url);
+		LLWeb::loadWebURLInternal(url);
 
 		return true;
 	}
-- 
GitLab