diff options
author | richard <none@none> | 2009-12-14 15:47:15 -0800 |
---|---|---|
committer | richard <none@none> | 2009-12-14 15:47:15 -0800 |
commit | ac086c56afd34c2bf208ab0777780c5e03baca7b (patch) | |
tree | f84f4e90555e5e1393f9123a8133038ea06dd971 /indra/newview | |
parent | a63531145d210a872072f20ee1f04d9504c6617c (diff) |
ext-3362 - about land -> objects -> most recented sorted by day
reviewed by Mani
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llfloaterland.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterland.cpp b/indra/newview/llfloaterland.cpp index 5b03292b22..0694143190 100644 --- a/indra/newview/llfloaterland.cpp +++ b/indra/newview/llfloaterland.cpp @@ -1527,7 +1527,7 @@ void LLPanelLandObjects::processParcelObjectOwnersReply(LLMessageSystem *msg, vo object_count_str = llformat("%d", object_count); item_params.columns.add().value(object_count_str).font(FONT).column("count"); - item_params.columns.add().value(formatted_time((time_t)most_recent_time)).font(FONT).column("mostrecent"); + item_params.columns.add().value(LLDate((time_t)most_recent_time)).font(FONT).column("mostrecent").type("date"); self->mOwnerList->addRow(item_params); |