diff options
Diffstat (limited to 'user_guide/helpers')
-rw-r--r-- | user_guide/helpers/url_helper.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/helpers/url_helper.html b/user_guide/helpers/url_helper.html index d38f6ff24..e6fe5f2f9 100644 --- a/user_guide/helpers/url_helper.html +++ b/user_guide/helpers/url_helper.html @@ -134,9 +134,9 @@ will be added automatically from the information specified in your config file. <p>Here are some examples:</p> -<code>echo anchor('news/local/123', 'title="My News"');</code> +<code>echo anchor('news/local/123', 'My News', 'title="News title"');</code> -<p>Would produce: <a href="http://example.com/index.php/news/local/123" title="My News">My News</a></p> +<p>Would produce: <a href="http://example.com/index.php/news/local/123" title="News title">My News</a></p> <code>echo anchor('news/local/123', 'My News', array('title' => 'The best news!'));</code> |