From b527918350b330b4789fc3a004ac17be3c60771f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Liru=20F=C3=A6rs?= Date: Thu, 7 Nov 2019 12:47:59 -0500 Subject: [PATCH] Shorten format string --- indra/newview/llfloaterregioninfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llfloaterregioninfo.cpp b/indra/newview/llfloaterregioninfo.cpp index 792f28cb2..fb12e4b24 100644 --- a/indra/newview/llfloaterregioninfo.cpp +++ b/indra/newview/llfloaterregioninfo.cpp @@ -4130,7 +4130,7 @@ void handlePseudoISO8601(const std::string& date_str, LLSD& column, const std::s else { std::tm time = {}; - if (std::istringstream(date_str) >> std::get_time(&time, "%Y-%m-%d %T")) + if (std::istringstream(date_str) >> std::get_time(&time, "%F %T")) { column["value"] = LLDate(mktime(&time)); column["type"] = "date";