diff options
author | Andrey Andreev <narf@devilix.net> | 2014-02-11 17:49:42 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-02-11 17:49:42 +0100 |
commit | e90d8571d042c4913266b585a067f54007f2ee96 (patch) | |
tree | a40f20d956865c6b257a6a5cb3fd55c382b8ea21 /user_guide_src/source/libraries/calendar.rst | |
parent | f0b69a85e306266bcaa7d6b7f363cc9d64b7b8f7 (diff) | |
parent | 871754af60251993d640981e107d2def5f2db396 (diff) |
Merge pull request #2869 from darwinel/develop
2013 > 2014
Diffstat (limited to 'user_guide_src/source/libraries/calendar.rst')
-rw-r--r-- | user_guide_src/source/libraries/calendar.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide_src/source/libraries/calendar.rst b/user_guide_src/source/libraries/calendar.rst index 65a447a3d..2263aa404 100644 --- a/user_guide_src/source/libraries/calendar.rst +++ b/user_guide_src/source/libraries/calendar.rst @@ -248,14 +248,14 @@ Class Reference you submit 13 as the month, the year will increment and the month will become January:: - print_r($this->calendar->adjust_date(13, 2013)); + print_r($this->calendar->adjust_date(13, 2014)); outputs:: Array ( [month] => '01' - [year] => '2014' + [year] => '2015' ) .. method:: get_total_days($month, $year) |