summaryrefslogtreecommitdiff
path: root/indra/newview/llsidepaneliteminfo.cpp
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2024-10-11 18:50:14 +0300
committerAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2024-10-11 22:12:41 +0300
commitbed3b57c52574ec593293c7397dd0da18e801fb4 (patch)
treec3837e27a981351a302dd91f35f4aba41753ee9b /indra/newview/llsidepaneliteminfo.cpp
parente2a2273c96d18aa341f13e590a94590510c96113 (diff)
viewer#2172 AM/PM selector #2
Diffstat (limited to 'indra/newview/llsidepaneliteminfo.cpp')
-rw-r--r--indra/newview/llsidepaneliteminfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llsidepaneliteminfo.cpp b/indra/newview/llsidepaneliteminfo.cpp
index 68c5f3fb56..385e4314a9 100644
--- a/indra/newview/llsidepaneliteminfo.cpp
+++ b/indra/newview/llsidepaneliteminfo.cpp
@@ -484,7 +484,7 @@ void LLSidepanelItemInfo::refreshFromItem(LLViewerInventoryItem* item)
else
{
static bool use_24h = gSavedSettings.getBOOL("Use24HourClock");
- std::string timeStr = use_24h ? getString("acquiredDate24") : getString("acquiredDateAMPM");
+ std::string timeStr = use_24h ? getString("acquiredDate") : getString("acquiredDateAMPM");
LLSD substitution;
substitution["datetime"] = (S32) time_utc;
LLStringUtil::format (timeStr, substitution);