From ec63402585f54f7f2399dc82b1fe402f726315ff Mon Sep 17 00:00:00 2001 From: Chris Schmitz Date: Tue, 13 Sep 2011 10:02:43 -0500 Subject: Minor typo and grammar corrections. --- user_guide/helpers/form_helper.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'user_guide') diff --git a/user_guide/helpers/form_helper.html b/user_guide/helpers/form_helper.html index 0afe0eb53..511eeab89 100644 --- a/user_guide/helpers/form_helper.html +++ b/user_guide/helpers/form_helper.html @@ -180,12 +180,12 @@ echo form_input('username', 'johndoe', $js);

form_password()

This function is identical in all respects to the form_input() function above -except that is sets it as a "password" type.

+except that it uses the "password" input type.

form_upload()

This function is identical in all respects to the form_input() function above -except that is sets it as a "file" type, allowing it to be used to upload files.

+except that it uses the "file" input type, allowing it to be used to upload files.

form_textarea()

@@ -318,7 +318,7 @@ fourth parameter:

form_radio()

-

This function is identical in all respects to the form_checkbox() function above except that is sets it as a "radio" type.

+

This function is identical in all respects to the form_checkbox() function above except that it uses the "radio" input type.

form_submit()

-- cgit v1.2.3-24-g4f1b From 6c9b9b2abc56a692a381375835a41fc4fe56f246 Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Tue, 13 Sep 2011 23:26:55 +0800 Subject: Update: add changelog for valid_email() function --- user_guide/changelog.html | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'user_guide') diff --git a/user_guide/changelog.html b/user_guide/changelog.html index 3b4c72b4c..ba138084e 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -79,7 +79,7 @@ Change Log
  • Helpers
    • Added increment_string() to String Helper to turn "foo" into "foo-1" or "foo-1" into "foo-2".
    • -
    • Altered form helper - made action on form_open_multipart helper function call optional. Fixes (#65)
    • +
    • Altered form helper - made action on form_open_multipart helper function call optional. Fixes (#65)
    • url_title() will now trim extra dashes from beginning and end.
    • Improved speed of String Helper's random_string() method
    @@ -102,6 +102,7 @@ Change Log
  • Added max_filename_increment config setting for Upload library.
  • CI_Loader::_ci_autoloader() is now a protected method.
  • Added is_unique to the Form Validation library.
  • +
  • Modified valid_ip() to use PHP's filter_var() when possible (>= PHP 5.2) in the Form Validation library.
  • Core @@ -117,9 +118,9 @@ Change Log
  • If a config class was loaded first then a library with the same name is loaded, the config would be ignored.
  • Fixed a bug (Reactor #19) where 1) the 404_override route was being ignored in some cases, and 2) auto-loaded libraries were not available to the 404_override controller when a controller existed but the requested method did not.
  • Fixed a bug (Reactor #89) where MySQL export would fail if the table had hyphens or other non alphanumeric/underscore characters.
  • -
  • Fixed a bug (#200) where MySQL queries would be malformed after calling count_all() then db->get()
  • -
  • Fixed bug #105 that stopped query errors from being logged unless database debugging was enabled
  • -
  • Fixed a bug (#181) where a mis-spelling was in the form validation language file.
  • +
  • Fixed a bug (#200) where MySQL queries would be malformed after calling count_all() then db->get()
  • +
  • Fixed bug #105 that stopped query errors from being logged unless database debugging was enabled
  • +
  • Fixed a bug (#181) where a mis-spelling was in the form validation language file.
  • Fixed a bug (#160) - Removed unneeded array copy in the file cache driver.
  • Fixed a bug (#150) - field_data() now correctly returns column length.
  • Fixed a bug (#8) - load_class() now looks for core classes in APPPATH first, allowing them to be replaced.
  • -- cgit v1.2.3-24-g4f1b