summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2010-09-16 13:33:52 -0700
committerMerov Linden <merov@lindenlab.com>2010-09-16 13:33:52 -0700
commit71507653a0ecf209b3faec4bed3c4a443fdc8833 (patch)
treeea20a4a0b9bca313239d6c9908956d92147ab796 /indra/llcommon
parent1fb2f1b37a83d054b11bf4536af6cf387ebca41d (diff)
parentfbffeea75b514e71707b9da14a503d3f50ca8b56 (diff)
Pull from lindenlab/viewer-development
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" )
{