summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorChristian Goetze (CG) <cg@lindenlab.com>2010-09-16 12:03:36 -0700
committerChristian Goetze (CG) <cg@lindenlab.com>2010-09-16 12:03:36 -0700
commitf78547cb4265f324adbe224fd4b17097089c0855 (patch)
treebf2f188a5ac0bd308f45a9fbd46c80c8cd3f9115 /indra/llcommon
parent79ea7b43743b8b9ec768ebb3f3212a147bb9f846 (diff)
parent395a5cbafff00aa90e0cd71891f9741c501e9824 (diff)
Merging work to make lenny build
Diffstat (limited to 'indra/llcommon')
-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" )
{