diff options
-rw-r--r-- | user_guide/changelog.html | 1 | ||||
-rw-r--r-- | user_guide/general/models.html | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/user_guide/changelog.html b/user_guide/changelog.html index 5fa7c60a3..ef242b4f6 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -88,6 +88,7 @@ SVN Revision: not currently released</p> <li>Moved the _has_operators() function (#4535) into DB_driver from DB_active_rec.</li>
<li>Fixed a syntax error in upload_lang.php.</li>
<li>Fixed a bug (#4542) with a regular expression in the Image library.</li>
+ <li>Fixed assorted user guide typos or examples (#4574).</li>
</ul>
<h2>Version 1.6.2</h2>
diff --git a/user_guide/general/models.html b/user_guide/general/models.html index 2759f0219..52172570e 100644 --- a/user_guide/general/models.html +++ b/user_guide/general/models.html @@ -110,7 +110,7 @@ class Blogmodel extends Model {<br /> $this->content = $_POST['content'];<br />
$this->date = time();<br />
<br />
- $this->db->update('entries', $this, array('id', $_POST['id']));<br />
+ $this->db->update('entries', $this, array('id' => $_POST['id']));<br />
}<br />
<br />
}</code>
|