Fixed extra text in img() function description of the userguide
diff --git a/user_guide/changelog.html b/user_guide/changelog.html
index 2dcde94..b98d9d5 100644
--- a/user_guide/changelog.html
+++ b/user_guide/changelog.html
@@ -104,7 +104,7 @@
 <h3>Bug fixes for 1.7.0</h3>

 <ul>

 	<li>Fixed bug in xss_clean() that could remove some desirable tag attributes.</li>

-	<li>Fixed assorted user guide typos or examples (#4807, #4812, #4840, #4862, #4864, #4899, #4930, #5006, #5071, #5158, #5229).</li>

+	<li>Fixed assorted user guide typos or examples (#4807, #4812, #4840, #4862, #4864, #4899, #4930, #5006, #5071, #5158, #5229, #5254).</li>

 	<li>Fixed an edit from 1.6.3 that made the $robots array in user_agents.php go poof.</li>

 	<li>Fixed a bug in the Email library with quoted-printable encoding improperly encoding space and tab characters.</li>

 	<li>Modified XSS sanitization to no longer add semicolons after &amp;[single letter], such as in M&amp;M's, B&amp;B, etc.</li>

diff --git a/user_guide/helpers/html_helper.html b/user_guide/helpers/html_helper.html
index ab26cbc..e63a449 100644
--- a/user_guide/helpers/html_helper.html
+++ b/user_guide/helpers/html_helper.html
@@ -79,8 +79,7 @@
 <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>