diff options
author | merov <none@none> | 2012-01-13 15:13:13 -0800 |
---|---|---|
committer | merov <none@none> | 2012-01-13 15:13:13 -0800 |
commit | 6051ac65d62c364e3d797a841d675e20f4182e63 (patch) | |
tree | 945883571ae7f12689233fccfd4bd09ead7d9f05 /indra/llcommon/llstring.cpp | |
parent | 86ef722e7cb2e4c791e8223f5c09a0552b52b574 (diff) | |
parent | 86009704769a79768eb02f459b1b99ea060e5fc1 (diff) |
Pull from viewer-experience
Diffstat (limited to 'indra/llcommon/llstring.cpp')
-rw-r--r-- | indra/llcommon/llstring.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/indra/llcommon/llstring.cpp b/indra/llcommon/llstring.cpp index 1193a4ef8d..e7fe656808 100644 --- a/indra/llcommon/llstring.cpp +++ b/indra/llcommon/llstring.cpp @@ -1122,11 +1122,6 @@ bool LLStringUtil::formatDatetime(std::string& replacement, std::string token, struct tm * gmt = gmtime (&loc_seconds); replacement = LLStringOps::sMonthList[gmt->tm_mon]; } - else if(LLStringOps::sMonthShortList.size() == 12 && code == "%b") - { - struct tm * gmt = gmtime (&loc_seconds); - replacement = LLStringOps::sMonthShortList[gmt->tm_mon]; - } else if( !LLStringOps::sDayFormat.empty() && code == "%d" ) { struct tm * gmt = gmtime (&loc_seconds); |