diff options
author | Andrey Andreev <narf@devilix.net> | 2016-03-07 09:03:58 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-03-07 09:05:05 +0100 |
commit | c1721f15c72fb0b062a381d89dadaf1e86f8576b (patch) | |
tree | bc78354bf1526a9077e611f9610c0e6951756dc8 /user_guide_src/source/libraries/calendar.rst | |
parent | 858e8b704fef1378713e3a6c865dcd2b07577076 (diff) |
Merge pull request #4506 from mixinix/patch-1
[ci skip] Update Calendar docs
Diffstat (limited to 'user_guide_src/source/libraries/calendar.rst')
-rw-r--r-- | user_guide_src/source/libraries/calendar.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/user_guide_src/source/libraries/calendar.rst b/user_guide_src/source/libraries/calendar.rst index ea0f4d108..8fdacf1d7 100644 --- a/user_guide_src/source/libraries/calendar.rst +++ b/user_guide_src/source/libraries/calendar.rst @@ -60,10 +60,10 @@ parameter of the calendar generating function. Consider this example:: $this->load->library('calendar'); $data = array( - 3 => 'http://example.com/news/article/2006/03/', - 7 => 'http://example.com/news/article/2006/07/', - 13 => 'http://example.com/news/article/2006/13/', - 26 => 'http://example.com/news/article/2006/26/' + 3 => 'http://example.com/news/article/2006/06/03/', + 7 => 'http://example.com/news/article/2006/06/07/', + 13 => 'http://example.com/news/article/2006/06/13/', + 26 => 'http://example.com/news/article/2006/06/26/' ); echo $this->calendar->generate(2006, 6, $data); |