diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-09-16 19:55:55 +0100 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-09-16 19:55:55 +0100 |
commit | 395a5cbafff00aa90e0cd71891f9741c501e9824 (patch) | |
tree | 8a4e6ee30b901a2615ff71b6f9db8de2b25f1b86 /indra/llcommon/llstring.cpp | |
parent | 128bcffb62e050d9cbb84af859e45477e8d90ee8 (diff) | |
parent | 242206ea25a4685f1c7df977c8b5226c8aa42262 (diff) |
merge
Diffstat (limited to 'indra/llcommon/llstring.cpp')
-rw-r--r-- | indra/llcommon/llstring.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llstring.cpp b/indra/llcommon/llstring.cpp index 33b55d843c..ae7e624a1a 100644 --- a/indra/llcommon/llstring.cpp +++ b/indra/llcommon/llstring.cpp @@ -1112,7 +1112,7 @@ bool LLStringUtil::formatDatetime(std::string& replacement, std::string token, else if(LLStringOps::sMonthList.size() == 12 && code == "%B") { struct tm * gmt = gmtime (&loc_seconds); - replacement = LLStringOps::sWeekDayList[gmt->tm_mon]; + replacement = LLStringOps::sMonthList[gmt->tm_mon]; } else if( !LLStringOps::sDayFormat.empty() && code == "%d" ) { |