diff options
author | Oz Linden <oz@lindenlab.com> | 2011-04-21 20:22:11 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2011-04-21 20:22:11 -0400 |
commit | b0183ebc6535fab259daf7175dad58c778910709 (patch) | |
tree | 2515aa8e99f73f93d1e88b786905622d30d2ada9 /indra | |
parent | a4decda79b0123fdb5638415239b8666a987b984 (diff) | |
parent | c797cf6500a79f361ddfbaec589d64178efafcff (diff) |
merge changes for storm-1136
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/lldateutil.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/lldateutil.cpp b/indra/newview/lldateutil.cpp index fcc73a07bc..18ae6107e7 100644 --- a/indra/newview/lldateutil.cpp +++ b/indra/newview/lldateutil.cpp @@ -32,9 +32,9 @@ #include "llui.h" static S32 DAYS_PER_MONTH_NOLEAP[] = - { 31, 28, 21, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; + { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; static S32 DAYS_PER_MONTH_LEAP[] = - { 31, 29, 21, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; + { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; static S32 days_from_month(S32 year, S32 month) { |