diff --git a/indra/newview/llavataractions.cpp b/indra/newview/llavataractions.cpp index aea7f002229ada0494e0ad9708693439f135afd0..f3f0cde221353bb0a77af4252e94cc3a83cb1514 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 170e8e9846b75ac01a44bd0db0233db8ad8250aa..4f13c0c022e42d4cefe30c665b48c746b407b2b8 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; }