diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-07-25 22:49:41 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-07-25 22:49:41 +0200 |
commit | e3b8749f766e09ff55ad047b33c047149c9e249c (patch) | |
tree | 65b0aabc165bf363d92d32c6635db952131c70b0 /user_guide | |
parent | 5f171c8ce895a42774c6de98f7f984ab4373e9e4 (diff) |
quotes to an example in DBforge
Diffstat (limited to 'user_guide')
-rw-r--r-- | user_guide/changelog.html | 2 | ||||
-rw-r--r-- | user_guide/database/forge.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/changelog.html b/user_guide/changelog.html index e2ba8f603..3aaf7292d 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -80,7 +80,7 @@ SVN Revision: XXXX</p> <h3>Bug fixes for 1.6.4</h3>
<ul>
<li>Fixed bug in xss_clean() that could remove some desirable tag attributes.</li>
- <li>Fixed assorted user guide typos or examples (#4840, #4862, #4864, #4899).</li>
+ <li>Fixed assorted user guide typos or examples (#4840, #4862, #4864, #4899, #4930).</li>
<li>Fixed an edit from 1.6.3 that made the $robots array in user_agents.php go poof.</li>
</ul>
diff --git a/user_guide/database/forge.html b/user_guide/database/forge.html index 0df26a209..12ac62f57 100644 --- a/user_guide/database/forge.html +++ b/user_guide/database/forge.html @@ -116,7 +116,7 @@ already be running, since the forge class relies on it.</p> <p>Fields are created via an associative array. Within the array you must include a 'type' key that relates to the datatype of the field. For example, INT, VARCHAR, TEXT, etc. Many datatypes (for example VARCHAR) also require a 'constraint' key.</p>
<p><code>$fields = array(<br />
'users' => array(<br />
- 'type' => VARCHAR,<br />
+ 'type' => 'VARCHAR',<br />
'constraint' => '100',<br />
),<br />
);<br />
|