Skip to content
Snippets Groups Projects
Commit 9f603cef authored by Paul Guslisty's avatar Paul Guslisty
Browse files

fixed normal bug EXT-2738. 12-hour clock format should not have a leading zero

--HG--
branch : product-engine
parent c9c0552b
No related branches found
No related tags found
No related merge requests found
...@@ -717,7 +717,7 @@ void LLStringOps::setupDatetimeInfo (bool daylight) ...@@ -717,7 +717,7 @@ void LLStringOps::setupDatetimeInfo (bool daylight)
datetimeToCodes["day"] = "%d"; // 31 datetimeToCodes["day"] = "%d"; // 31
datetimeToCodes["hour24"] = "%H"; // 14 datetimeToCodes["hour24"] = "%H"; // 14
datetimeToCodes["hour"] = "%H"; // 14 datetimeToCodes["hour"] = "%H"; // 14
datetimeToCodes["hour12"] = "%I"; // 02 datetimeToCodes["hour12"] = "%l"; // 02
datetimeToCodes["min"] = "%M"; // 59 datetimeToCodes["min"] = "%M"; // 59
datetimeToCodes["ampm"] = "%p"; // AM datetimeToCodes["ampm"] = "%p"; // AM
datetimeToCodes["second"] = "%S"; // 59 datetimeToCodes["second"] = "%S"; // 59
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment