summaryrefslogtreecommitdiffstats
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
parenta42f38709d4628ba7e93d62a26d405bfbc0eeb69 (diff)
Fixed extra text in img() function description of the userguide
-rw-r--r--user_guide/changelog.html2
-rw-r--r--user_guide/helpers/html_helper.html3
2 files changed, 2 insertions, 3 deletions
diff --git a/user_guide/changelog.html b/user_guide/changelog.html
index 2dcde9465..b98d9d5ba 100644
--- a/user_guide/changelog.html
+++ b/user_guide/changelog.html
@@ -104,7 +104,7 @@ SVN Revision: XXXX</p>
<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 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>