summaryrefslogtreecommitdiff
path: root/indra/newview/llgroupmgr.cpp
diff options
context:
space:
mode:
authorPalmer Truelson <palmer@lindenlab.com>2010-02-23 21:51:25 -0800
committerPalmer Truelson <palmer@lindenlab.com>2010-02-23 21:51:25 -0800
commit2f785135bc39575ec306b2b057e446e61c5369d7 (patch)
tree8c2e6a03962b24700694c6887dacd1558df7cde9 /indra/newview/llgroupmgr.cpp
parent31e4b6e79ccd0a0451de3fa6a487f775d9f45497 (diff)
parentb214180ac189f6c6347347c5d3a5dc7035e0c039 (diff)
Merge with viewer 2.
Diffstat (limited to 'indra/newview/llgroupmgr.cpp')
-rw-r--r--indra/newview/llgroupmgr.cpp3
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());
}
}