diff options
author | Erik Kundiman <erik@megapahit.org> | 2024-11-13 12:24:34 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2024-11-13 12:24:34 +0800 |
commit | d3ff0a5b96e16cc54a3afbf49ecd73bb074786c0 (patch) | |
tree | c72023e5222c38b73b42f136100d09ce9edf4d0a | |
parent | fd51fbb4dfb17fcd2bfb019a55d2f067d1151f34 (diff) |
Fix previous commit
-rw-r--r-- | indra/newview/lllogchat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lllogchat.cpp b/indra/newview/lllogchat.cpp index e398ca5cb7..1db7bd978c 100644 --- a/indra/newview/lllogchat.cpp +++ b/indra/newview/lllogchat.cpp @@ -312,7 +312,7 @@ std::string LLLogChat::timestamp2LogString(U32 timestamp, bool withdate) + LLTrans::getString ("TimeMonth") + "]/[" + LLTrans::getString ("TimeDay") + "] [" + LLTrans::getString ("TimeHour") + "]:[" - + LLTrans::getString ("TimeMin") + "]:["; + + LLTrans::getString ("TimeMin") + "]:[" + LLTrans::getString ("TimeSec") + "]"; } else |