summaryrefslogtreecommitdiff
path: root/indra/llcommon/llstring.cpp
diff options
context:
space:
mode:
authorTofu Linden <tofu.linden@lindenlab.com>2010-09-16 18:19:03 +0100
committerTofu Linden <tofu.linden@lindenlab.com>2010-09-16 18:19:03 +0100
commit35734598115c6e527a5fb45f6c80bb3884cfb5ee (patch)
tree8d1d25154f405f7ff19e314200af24bda6444a61 /indra/llcommon/llstring.cpp
parent3641e9cfc897c5f6c4bb46f9e5865db405bcf31c (diff)
parent0098a236076701bc5bbfa80e2f97f360d332b6a8 (diff)
merge storm-180
Diffstat (limited to 'indra/llcommon/llstring.cpp')
-rw-r--r--indra/llcommon/llstring.cpp2
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" )
{