diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2024-10-11 18:50:14 +0300 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-10-11 22:12:41 +0300 |
commit | bed3b57c52574ec593293c7397dd0da18e801fb4 (patch) | |
tree | c3837e27a981351a302dd91f35f4aba41753ee9b /indra/newview/llsidepaneliteminfo.cpp | |
parent | e2a2273c96d18aa341f13e590a94590510c96113 (diff) |
viewer#2172 AM/PM selector #2
Diffstat (limited to 'indra/newview/llsidepaneliteminfo.cpp')
-rw-r--r-- | indra/newview/llsidepaneliteminfo.cpp | 2 |
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); |