From 3d378b1fc634f5def5399bee35f11752a5929e1c Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Tue, 8 May 2007 23:03:59 +0000 Subject: typo fixes --- system/application/config/autoload.php | 186 ++++++++++++++++----------------- system/application/config/config.php | 3 +- system/application/config/routes.php | 4 - user_guide/libraries/validation.html | 4 +- 4 files changed, 96 insertions(+), 101 deletions(-) diff --git a/system/application/config/autoload.php b/system/application/config/autoload.php index 06d8780c4..26e71f74c 100644 --- a/system/application/config/autoload.php +++ b/system/application/config/autoload.php @@ -1,94 +1,94 @@ - \ No newline at end of file diff --git a/system/application/config/config.php b/system/application/config/config.php index 3bb9d1d23..941d9c303 100644 --- a/system/application/config/config.php +++ b/system/application/config/config.php @@ -152,8 +152,7 @@ $config['function_trigger'] = 'm'; | You can enable error logging by setting a threshold over zero. The | threshold determines what gets logged. Threshold options are: | -| 0 = Disables logging -| 0 = Error logging TURNED OFF +| 0 = Disables logging, Error logging TURNED OFF | 1 = Error Messages (including PHP errors) | 2 = Debug Messages | 3 = Informational Messages diff --git a/system/application/config/routes.php b/system/application/config/routes.php index 8a09dec39..be09f5aa2 100644 --- a/system/application/config/routes.php +++ b/system/application/config/routes.php @@ -43,8 +43,4 @@ $route['default_controller'] = "welcome"; $route['scaffolding_trigger'] = ""; - - - - ?> \ No newline at end of file diff --git a/user_guide/libraries/validation.html b/user_guide/libraries/validation.html index 502200862..d5ad263a2 100644 --- a/user_guide/libraries/validation.html +++ b/user_guide/libraries/validation.html @@ -689,7 +689,7 @@ each item. Example:

Permits you to display a checkbox in the state it was submitted. The first parameter must contain the name of the checkbox, the second parameter must contain its value. Example:

-<input type="checkbox" name="mycheck" value="1" <?= $this->validation->set_checkbox('mycheck', 1); ?> /> +<input type="checkbox" name="mycheck" value="1" <?= $this->validation->set_checkbox('mycheck', '1'); ?> />

set_radio()

@@ -697,7 +697,7 @@ must contain the name of the checkbox, the second parameter must contain its val

Permits you to display radio buttons in the state they were submitted. The first parameter must contain the name of the radio button, the second parameter must contain its value. Example:

-<input type="radio" name="myradio" value="1" <?= $this->validation->set_radio('myradio', 1); ?> /> +<input type="radio" name="myradio" value="1" <?= $this->validation->set_radio('myradio', '1'); ?> /> -- cgit v1.2.3-24-g4f1b