summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--user_guide/changelog.html2
-rw-r--r--user_guide/database/active_record.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/changelog.html b/user_guide/changelog.html
index d0fe3de80..84708f0e0 100644
--- a/user_guide/changelog.html
+++ b/user_guide/changelog.html
@@ -95,7 +95,7 @@ SVN Revision: </p>
<h3>Bug fixes for 1.7.1</h3>
<ul>
- <li>Fixed assorted user guide typos or examples (#6521, #6339).</li>
+ <li>Fixed assorted user guide typos or examples (#6521, #6339, #6259).</li>
<li>Fixed a bug in the MySQLi driver when no port is specified</li>
<li>Fixed a bug (#5702), in which the field label was not being fetched properly, when "matching" one field to another.</li>
<li>Fixed a bug in which identifers were not being escaped properly when reserved characters were used.</li>
diff --git a/user_guide/database/active_record.html b/user_guide/database/active_record.html
index 871c59a5d..23f5ce545 100644
--- a/user_guide/database/active_record.html
+++ b/user_guide/database/active_record.html
@@ -662,7 +662,7 @@ the data to the second parameter of the function:</p>
// Produces:<br />
// DELETE FROM mytable <br />
// WHERE id = $id</code></p>
-<p>An array of table names can be passed into delete() if you would like to delete data from more then 1 table.</p>
+<p>An array of table names can be passed into delete() if you would like to delete data from more than 1 table.</p>
<p><code>$tables = array('table1', 'table2', 'table3');<br />
$this-&gt;db-&gt;where('id', '5');<br />
$this-&gt;db-&gt;delete($tables);</code></p>