diff options
Diffstat (limited to 'user_guide')
-rw-r--r-- | user_guide/changelog.html | 2 | ||||
-rw-r--r-- | user_guide/general/models.html | 2 | ||||
-rw-r--r-- | user_guide/libraries/form_validation.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/user_guide/changelog.html b/user_guide/changelog.html index db30ad4d1..c423ac6e7 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -88,7 +88,7 @@ SVN Revision: </p> <h3>Bug fixes for 1.7.2</h3> <ul> - <li>Fixed assorted user guide typos or examples (#6743, #7214).</li> + <li>Fixed assorted user guide typos or examples (#6743, #7214, #7516, #7287).</li> <li>doctype helper default value was missing a "1".</li> <li>Fixed a bug with ORIG_PATH_INFO that was allowing URIs of just a slash through.</li> <li>Fixed a fatal error in the Oracle and ODBC drivers (#6752)</li> diff --git a/user_guide/general/models.html b/user_guide/general/models.html index efee5117a..88600bc1f 100644 --- a/user_guide/general/models.html +++ b/user_guide/general/models.html @@ -161,7 +161,7 @@ To load a model you will use the following function:</p> <code>$this->load->model('<var>Model_name</var>');</code> -<p>If you model is located in a sub-folder, include the relative path from your models folder. For example, if +<p>If your model is located in a sub-folder, include the relative path from your models folder. For example, if you have a model located at <dfn>application/models/blog/queries.php</dfn> you'll load it using:</p> <code>$this->load->model('<var>blog/queries</var>');</code> diff --git a/user_guide/libraries/form_validation.html b/user_guide/libraries/form_validation.html index 3069054ae..c34798438 100644 --- a/user_guide/libraries/form_validation.html +++ b/user_guide/libraries/form_validation.html @@ -830,7 +830,7 @@ class <kbd>Member</kbd> extends Controller {<br /> <code>$config = array(<br /> - '<kbd>member/signup</kbd>' = array(<br /> + '<kbd>member/signup</kbd>' => array(<br /> array(<br /> 'field' => 'username',<br /> 'label' => 'Username',<br /> |