From 0134ca4d6be32009c7fb7d40cfdbd31e19b970c3 Mon Sep 17 00:00:00 2001
From: Derek Allard
Date: Sun, 31 Aug 2008 14:31:08 +0000
Subject: fixed incorrect example SQL output example
---
user_guide/changelog.html | 2 +-
user_guide/database/active_record.html | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/user_guide/changelog.html b/user_guide/changelog.html
index 50a3bc78e..a54548ed5 100644
--- a/user_guide/changelog.html
+++ b/user_guide/changelog.html
@@ -96,7 +96,7 @@ SVN Revision: XXXX
Bug fixes for 1.7.0
- Fixed bug in xss_clean() that could remove some desirable tag attributes.
- - Fixed assorted user guide typos or examples (#4807, #4840, #4862, #4864, #4899, #4930, #5006, #5071).
+ - Fixed assorted user guide typos or examples (#4807, #4812, #4840, #4862, #4864, #4899, #4930, #5006, #5071).
- Fixed an edit from 1.6.3 that made the $robots array in user_agents.php go poof.
- Fixed a bug in the Email library with quoted-printable encoding improperly encoding space and tab characters.
- Modified XSS sanitization to no longer add semicolons after &[single letter], such as in M&M's, B&B, etc.
diff --git a/user_guide/database/active_record.html b/user_guide/database/active_record.html
index 3a40dc2ce..04e81d8cc 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