From 7c708ca4da0e0848c15ed78f9a14aa637a5ba14c Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Mon, 5 Jul 2010 07:25:11 -0400 Subject: Fixed an example typo --- user_guide/database/active_record.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'user_guide/database/active_record.html') diff --git a/user_guide/database/active_record.html b/user_guide/database/active_record.html index 6977302a9..bc7cd3d11 100644 --- a/user_guide/database/active_record.html +++ b/user_guide/database/active_record.html @@ -228,7 +228,7 @@ $this->db->join('comments', 'comments.id = blogs.id', 'left');< $this->db->where('name', $name);
$this->db->where('title', $title);
$this->db->where('status', $status); -

// WHERE name 'Joe' AND title = 'boss' AND status = 'active'
+

// WHERE name = 'Joe' AND title = 'boss' AND status = 'active'
  • Custom key/value method: -- cgit v1.2.3-24-g4f1b