summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorMnikolenko ProductEngine <mnikolenko@productengine.com>2014-04-14 11:13:22 +0300
committerMnikolenko ProductEngine <mnikolenko@productengine.com>2014-04-14 11:13:22 +0300
commit4cf5d945d4e892c1c5383e49910759c24ecbf591 (patch)
tree6c1aeca01953e6e910a7585e613f16a31fdd59fa /indra/newview
parent0b0ca7961bfb4fb808c9653a68c46eb2353ba2a8 (diff)
MAINT-3564 FIXED Replace dot before comparing user name.
Diffstat (limited to 'indra/newview')
-rwxr-xr-xindra/newview/llpanellogin.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/llpanellogin.cpp b/indra/newview/llpanellogin.cpp
index 911ecaad9d..d6183c5ab3 100755
--- a/indra/newview/llpanellogin.cpp
+++ b/indra/newview/llpanellogin.cpp
@@ -262,6 +262,7 @@ void LLPanelLogin::addFavoritesToStartLocation()
// Load favorites into the combo.
std::string user_defined_name = getChild<LLComboBox>("username_combo")->getSimple();
+ std::replace(user_defined_name.begin(), user_defined_name.end(), '.', ' ');
std::string filename = gDirUtilp->getExpandedFilename(LL_PATH_USER_SETTINGS, "stored_favorites.xml");
LLSD fav_llsd;
llifstream file;