summaryrefslogtreecommitdiff
path: root/indra/newview/llappviewer.cpp
diff options
context:
space:
mode:
authorandreykproductengine <akleshchev@productengine.com>2016-05-13 19:42:27 +0300
committerandreykproductengine <akleshchev@productengine.com>2016-05-13 19:42:27 +0300
commitb756b47d08d028a40d0a49b11755d31f47efe46d (patch)
tree4e4537c58774527b6eb3fbaeeaf12652a2d90767 /indra/newview/llappviewer.cpp
parent8243301b3ff6c90db6d1fb53baf5050666d75d9a (diff)
MAINT-6383 SLT timestamp in "About second life" floater
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rwxr-xr-xindra/newview/llappviewer.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp
index 45306dcff4..b6ba200d0d 100755
--- a/indra/newview/llappviewer.cpp
+++ b/indra/newview/llappviewer.cpp
@@ -3440,6 +3440,12 @@ std::string LLAppViewer::getViewerInfoString() const
{
support << '\n' << LLTrans::getString("AboutTraffic", args);
}
+
+ // SLT timestamp
+ LLSD substitution;
+ substitution["datetime"] = (S32)time(NULL);//(S32)time_corrected();
+ support << "\n" << LLTrans::getString("AboutTime", substitution);
+
return support.str();
}