diff options
| author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-09-16 18:19:03 +0100 | 
|---|---|---|
| committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-09-16 18:19:03 +0100 | 
| commit | 35734598115c6e527a5fb45f6c80bb3884cfb5ee (patch) | |
| tree | 8d1d25154f405f7ff19e314200af24bda6444a61 | |
| parent | 3641e9cfc897c5f6c4bb46f9e5865db405bcf31c (diff) | |
| parent | 0098a236076701bc5bbfa80e2f97f360d332b6a8 (diff) | |
merge storm-180
| -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" )  	{ | 
