diff options
author | eli_linden <eli@lindenlab.com> | 2010-09-16 12:07:29 -0700 |
---|---|---|
committer | eli_linden <eli@lindenlab.com> | 2010-09-16 12:07:29 -0700 |
commit | fbffeea75b514e71707b9da14a503d3f50ca8b56 (patch) | |
tree | 6337259fd1aecd175fc83c2ed2f1f9cf9a957670 /indra/llcommon/llstring.cpp | |
parent | 78281577709bb3d06b9df3a386a3a4c4b97f6643 (diff) | |
parent | 395a5cbafff00aa90e0cd71891f9741c501e9824 (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" ) { |