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:03:58 +0100 |
commit | a6fbedce98e92caaa20c24461587cecad6a37214 (patch) | |
tree | 58dc3888672708f068fb8ec83e0f7a97910a249e | |
parent | 8f06abf0e533a04663a7a11bbc60bee3ffb24f0a (diff) | |
parent | 1d7443acb57fa473295ecf4856a456d2c4fbe59f (diff) |
Merge pull request #4506 from mixinix/patch-1
[ci skip] Update Calendar docs
-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); |