From 36a83950b4fc61e4f8d577a4156c2a94b59f0fae Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Tue, 20 May 2008 10:56:34 +0000 Subject: Fixed an example in Model docs --- user_guide/changelog.html | 1 + user_guide/general/models.html | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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

  • Moved the _has_operators() function (#4535) into DB_driver from DB_active_rec.
  • Fixed a syntax error in upload_lang.php.
  • Fixed a bug (#4542) with a regular expression in the Image library.
  • +
  • Fixed assorted user guide typos or examples (#4574).
  • Version 1.6.2

    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 {
            $this->content = $_POST['content'];
            $this->date    = time();

    -        $this->db->update('entries', $this, array('id', $_POST['id']));
    +        $this->db->update('entries', $this, array('id' => $_POST['id']));
        }

    } -- cgit v1.2.3-24-g4f1b