diff options
author | Eric Barnes <eric@ericlbarnes.com> | 2011-03-22 02:03:04 +0100 |
---|---|---|
committer | Eric Barnes <eric@ericlbarnes.com> | 2011-03-22 02:03:04 +0100 |
commit | 74089b2e80614f65112d812470b0959909e37682 (patch) | |
tree | 35709eaa2df3c4eaa334d6f7fd58f2251a587293 /user_guide | |
parent | a4d5926d1f40ca9f275a3e26626ac6c8fb605d31 (diff) |
Fixed wording when inserting object via active record. Fixes: #143
Diffstat (limited to 'user_guide')
-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 812deb90c..dc06c87be 100644 --- a/user_guide/database/active_record.html +++ b/user_guide/database/active_record.html @@ -517,7 +517,7 @@ $this->db->insert('mytable', $object); <br /><br /> // Produces: INSERT INTO mytable (title, content, date) VALUES ('My Title', 'My Content', 'My Date')</code> -<p>The first parameter will contain the table name, the second is an associative array of values.</p> +<p>The first parameter will contain the table name, the second is an object.</p> <p class="important"><strong>Note:</strong> All values are escaped automatically producing safer queries.</p> |