summaryrefslogtreecommitdiffstats
path: root/user_guide/helpers/html_helper.html
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-10-01 03:34:07 +0200
committerDerek Allard <derek.allard@ellislab.com>2008-10-01 03:34:07 +0200
commit4ebfb43dfebbcb59aac2b463dcc9561d1008fd0d (patch)
treed8a5231ef25487afbe1904774411bf4f13de68e7 /user_guide/helpers/html_helper.html
parenta42f38709d4628ba7e93d62a26d405bfbc0eeb69 (diff)
Fixed extra text in img() function description of the userguide
Diffstat (limited to 'user_guide/helpers/html_helper.html')
-rw-r--r--user_guide/helpers/html_helper.html3
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: &lt;h3>Welcome!&lt;/h3></p>
<h2>img()</h2>
-<p>Lets you create HTML &lt;img /&gt; 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 &lt;img /&gt; tags. The first parameter contains the image source. Example:</p>
<code>echo img('images/picture.jpg');<br />
// gives &lt;img src=&quot;http://site.com/images/picture.jpg&quot; /&gt;</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>