diff options
Diffstat (limited to 'user_guide/libraries/calendar.html')
-rw-r--r-- | user_guide/libraries/calendar.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/user_guide/libraries/calendar.html b/user_guide/libraries/calendar.html index 81cdc7134..dd24d9d22 100644 --- a/user_guide/libraries/calendar.html +++ b/user_guide/libraries/calendar.html @@ -97,10 +97,10 @@ generating function. Consider this example:</p> <code>$this->load->library('calendar');<br />
<br />
$data = array(<br />
- 3 => 'http://your-site.com/news/article/2006/03/',<br />
- 7 => 'http://your-site.com/news/article/2006/07/',<br />
- 13 => 'http://your-site.com/news/article/2006/13/',<br />
- 26 => 'http://your-site.com/news/article/2006/26/'<br />
+ 3 => 'http://example.com/news/article/2006/03/',<br />
+ 7 => 'http://example.com/news/article/2006/07/',<br />
+ 13 => 'http://example.com/news/article/2006/13/',<br />
+ 26 => 'http://example.com/news/article/2006/26/'<br />
);<br />
<br />
echo $this->calendar->generate(<kbd>2006</kbd>, <kbd>6</kbd>, <var>$data</var>);</code>
@@ -168,7 +168,7 @@ code similar to this example:</p> <code>$prefs = array (<br />
'show_next_prev' => TRUE,<br />
- 'next_prev_url' => 'http://www.your-site.com/index.php/calendar/show/'<br />
+ 'next_prev_url' => 'http://example.com/index.php/calendar/show/'<br />
);<br />
<br />
$this->load->library('calendar', $prefs);<br />
|