diff --git a/indra/llmessage/llcachename.cpp b/indra/llmessage/llcachename.cpp
index 4ac7f5d783..749315c1c8 100644
--- a/indra/llmessage/llcachename.cpp
+++ b/indra/llmessage/llcachename.cpp
@@ -453,7 +453,12 @@ BOOL LLCacheName::getFullName(const LLUUID& id, std::string& fullname)
return res;
}
-
+// Returns first name, last name
+BOOL LLCacheName::getFirstLastName(const LLUUID& id, std::string& first, std::string& last)
+{
+ return impl.getName(id, first, last);
+}
+//
BOOL LLCacheName::getGroupName(const LLUUID& id, std::string& group)
{
diff --git a/indra/llmessage/llcachename.h b/indra/llmessage/llcachename.h
index 2501354b62..b06c68d612 100644
--- a/indra/llmessage/llcachename.h
+++ b/indra/llmessage/llcachename.h
@@ -72,6 +72,7 @@ public:
// If not available, copies the string "waiting".
// Returns TRUE iff available.
BOOL getFullName(const LLUUID& id, std::string& full_name);
+ BOOL getFirstLastName(const LLUUID& id, std::string& first, std::string& last); // returns first name, last name
// Reverse lookup of UUID from name
BOOL getUUID(const std::string& first, const std::string& last, LLUUID& id);
diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml
index 9ac8761488..98e130bdef 100644
--- a/indra/newview/app_settings/settings.xml
+++ b/indra/newview/app_settings/settings.xml
@@ -18763,7 +18763,7 @@ Change of this parameter will affect the layout of buttons in notification toast
Value
1
- FSChatBarNamePrediction
+ FSChatbarNamePrediction