diff options
-rw-r--r-- | user_guide/database/active_record.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide/database/active_record.html b/user_guide/database/active_record.html index f644ba7df..5b7187bcf 100644 --- a/user_guide/database/active_record.html +++ b/user_guide/database/active_record.html @@ -241,7 +241,7 @@ $this->db->join('comments', 'comments.id = blogs.id', <strong>'left'</strong>);< <code>$this->db->where('name', $name);<br />
$this->db->where('title', $title);<br />
$this->db->where('status', $status);
- <br /><br />// WHERE = 'Joe' AND title = 'boss' AND status = 'active'
+ <br /><br />// WHERE = name 'Joe' AND title = 'boss' AND status = 'active'
</code>
|