Fix for Windows crash (incorrect date format crashes windows)

master
Steve Bennetts 2009-11-29 22:13:32 -08:00
parent a7549d6fe5
commit 3eb48e4015
1 changed files with 1 additions and 1 deletions

View File

@ -717,7 +717,7 @@ void LLStringOps::setupDatetimeInfo (bool daylight)
datetimeToCodes["day"] = "%d"; // 31
datetimeToCodes["hour24"] = "%H"; // 14
datetimeToCodes["hour"] = "%H"; // 14
datetimeToCodes["hour12"] = "%l"; // 02
datetimeToCodes["hour12"] = "%I"; // 02
datetimeToCodes["min"] = "%M"; // 59
datetimeToCodes["ampm"] = "%p"; // AM
datetimeToCodes["second"] = "%S"; // 59