diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-10-15 16:53:27 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-10-15 16:53:27 +0200 |
commit | e3945e9452fdaa155ad3a0ce51b591d3b12ccfe0 (patch) | |
tree | 9bfda92435660490e6b26a176f3ff14b5edad4e4 | |
parent | 42597a107d799fa86ebc706bf8cbac4f9471d08c (diff) |
example typo fix
-rw-r--r-- | user_guide/changelog.html | 2 | ||||
-rw-r--r-- | user_guide/libraries/form_validation.html | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/user_guide/changelog.html b/user_guide/changelog.html index e02ca28ac..e12e343bc 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -115,7 +115,7 @@ SVN Revision: XXXX</p> <h3>Bug fixes for 1.7.0</h3>
<ul>
<li>Fixed bug in <kbd>xss_clean()</kbd> 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, #5254).</li>
+ <li>Fixed assorted user guide typos or examples (#4807, #4812, #4840, #4862, #4864, #4899, #4930, #5006, #5071, #5158, #5229, #5254, #5351).</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 <a href="libraries/email.html">Email library</a> with quoted-printable encoding improperly encoding space and tab characters.</li>
<li>Modified XSS sanitization to no longer add semicolons after &[single letter], such as in M&M's, B&B, etc.</li>
diff --git a/user_guide/libraries/form_validation.html b/user_guide/libraries/form_validation.html index 0f89fb810..8485c7d3f 100644 --- a/user_guide/libraries/form_validation.html +++ b/user_guide/libraries/form_validation.html @@ -736,7 +736,7 @@ We've arbitrarily called these two rules "signup" and "email". You can name you <code>$config = array(<br />
- '<kbd>signup</kbd>' = array(<br />
+ '<kbd>signup</kbd>' => array(<br />
array(<br />
'field' => 'username',<br />
'label' => 'Username',<br />
@@ -758,7 +758,7 @@ We've arbitrarily called these two rules "signup" and "email". You can name you 'rules' => 'required'<br />
)<br />
),<br />
- '<kbd>email</kbd>' = array(<br />
+ '<kbd>email</kbd>' => array(<br />
array(<br />
'field' => 'emailaddress',<br />
'label' => 'EmailAddress',<br />
|