diff options
Diffstat (limited to 'user_guide/helpers')
-rw-r--r-- | user_guide/helpers/html_helper.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/user_guide/helpers/html_helper.html b/user_guide/helpers/html_helper.html index ab26cbccc..e63a449b4 100644 --- a/user_guide/helpers/html_helper.html +++ b/user_guide/helpers/html_helper.html @@ -79,8 +79,7 @@ second the size of the heading. Example:</p> <code>echo heading('Welcome!', 3);</code>
<p>The above would produce: <h3>Welcome!</h3></p>
<h2>img()</h2>
-<p>Lets you create HTML <img /> tags. The first parameter contains the image source. There is data, the
- second the size of the heading. Example:</p>
+<p>Lets you create HTML <img /> tags. The first parameter contains the image source. Example:</p>
<code>echo img('images/picture.jpg');<br />
// gives <img src="http://site.com/images/picture.jpg" /></code>
<p>There is an optional second parameter that is a TRUE/FALSE value that specifics if the src should have the page specified by $config['index_page'] added to the address it creates. Presumably, this would be if you were using a media controller.</p>
|