From 4e387c30919569814e912f8136280fc1433a05f3 Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Sat, 22 Dec 2007 16:41:29 +0000 Subject: typos fixes --- user_guide/changelog.html | 4 +--- user_guide/helpers/file_helper.html | 2 +- user_guide/libraries/validation.html | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/user_guide/changelog.html b/user_guide/changelog.html index 7bdc3da2a..918758901 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -103,11 +103,9 @@ Change Log
  • Fixed a typo in the image language file "suppor" to "support".
  • Fixed an example for XML RPC.
  • Fixed an example of accept_charset() in the User Agent Library.
  • -
  • Fixed a missing "?>" in the smiley helper.
  • Fixed a typo in the docblock comments that had CodeIgniter spelled CodeIgnitor.
  • Fixed a typo in the String Helper (uniquid changed to uniqid)
  • -
  • Fixed a typo in the DocBlock comment for unset_userdata() in Session.
  • -
  • Fixed a typo in the table library docs.
  • +
  • Fixed assorted user guide typos.
  • Moved part of the userguide menu javascript to an external file.
  • Added Zip Encoding Class to the table of contents of the userguide.
  • Deprecated from Active Record; getwhere() for get_where(); groupby() for group_by(); orderby() for order_by; orwhere() for or_where(); and orlike() for or_like().
  • diff --git a/user_guide/helpers/file_helper.html b/user_guide/helpers/file_helper.html index 815b7fd27..da8337cb1 100644 --- a/user_guide/helpers/file_helper.html +++ b/user_guide/helpers/file_helper.html @@ -79,7 +79,7 @@ File Helper

    Note: The path is relative to your main site index.php file, NOT your controller or view files. CodeIgniter uses a front controller so paths are always relative to the main site index.

    -

    If you server is running an open_basedir restriction this function +

    If your server is running an open_basedir restriction this function might not work if you are trying to access a file above the calling script.

    write_file('path', $data)

    diff --git a/user_guide/libraries/validation.html b/user_guide/libraries/validation.html index b63c3e1c9..90ff0c127 100644 --- a/user_guide/libraries/validation.html +++ b/user_guide/libraries/validation.html @@ -675,7 +675,7 @@ each item. Example:

    <select name="myselect">
    <option value="one" <?= $this->validation->set_select('myselect', 'one'); ?> >One</option>
    -<option value="two" <?= $this->validation->set_select('myselect', 'two'); ?> >Three</option>
    +<option value="two" <?= $this->validation->set_select('myselect', 'two'); ?> >Two</option>
    <option value="three" <?= $this->validation->set_select('myselect', 'three'); ?> >Three</option>
    </select>
    -- cgit v1.2.3-24-g4f1b