diff options
author | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2014-04-14 11:13:22 +0300 |
---|---|---|
committer | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2014-04-14 11:13:22 +0300 |
commit | 4cf5d945d4e892c1c5383e49910759c24ecbf591 (patch) | |
tree | 6c1aeca01953e6e910a7585e613f16a31fdd59fa /indra/newview/llpanellogin.cpp | |
parent | 0b0ca7961bfb4fb808c9653a68c46eb2353ba2a8 (diff) |
MAINT-3564 FIXED Replace dot before comparing user name.
Diffstat (limited to 'indra/newview/llpanellogin.cpp')
-rwxr-xr-x | indra/newview/llpanellogin.cpp | 1 |
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; |