diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-23 16:37:13 +0000 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-23 16:37:13 +0000 |
commit | e06c96d7e753536981ba8175148a9b1527e0f100 (patch) | |
tree | 57a3a0fd985343c4b143ec42407313ba03a6c454 /indra/newview/llgroupmgr.cpp | |
parent | 01ad8456a2566d258124677e0c7ce5eaa5003569 (diff) | |
parent | 8bf9bc2dc7e7af3e229ba6c02bdabdf1aa82ba71 (diff) |
PE merge.
Diffstat (limited to 'indra/newview/llgroupmgr.cpp')
-rw-r--r-- | indra/newview/llgroupmgr.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llgroupmgr.cpp b/indra/newview/llgroupmgr.cpp index 6e7321f739..ea5462a3e3 100644 --- a/indra/newview/llgroupmgr.cpp +++ b/indra/newview/llgroupmgr.cpp @@ -838,7 +838,8 @@ static void formatDateString(std::string &date_string) std::string day = result[2]; // ISO 8601 date format - date_string = llformat("%02s/%02s/%04s", month.c_str(), day.c_str(), year.c_str()); + //date_string = llformat("%02s/%02s/%04s", month.c_str(), day.c_str(), year.c_str()); + date_string = llformat("%04s/%02s/%04s", year.c_str(), month.c_str(), day.c_str()); } } |