diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-03-14 04:17:49 +0100 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-03-14 04:17:49 +0100 |
commit | 735ae13b4d4f71b769eb02de7050d6ba4495bf12 (patch) | |
tree | 9b7eccbf13c6bed54cd6e50f9dccea8ac4b5c71a | |
parent | 25b24d2985050fb4de88c43ffdf892f4d22f922d (diff) |
typo
-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>
|