docs: replace "Form validation" with "Validation"

Form validation is the name of CI3 library.
This commit is contained in:
kenjis 2022-05-26 19:55:37 +09:00
parent 5395498038
commit 2732abb58f
No known key found for this signature in database
GPG Key ID: BD254878922AF198
2 changed files with 5 additions and 5 deletions

View File

@ -39,7 +39,7 @@ CodeIgniter provisions
======================
- :doc:`HTTP library <../incoming/incomingrequest>` provides for input field filtering & content metadata
- Form validation library
- Validation library
*********************************************
A2 Weak authentication and session management
@ -82,7 +82,7 @@ CodeIgniter provisions
======================
- esc function
- Form validation library
- Validation library
***********************************
A4 Insecure Direct Object Reference
@ -103,7 +103,7 @@ OWASP recommendations
CodeIgniter provisions
======================
- Form validation library
- Validation library
- Easy to add third party authentication
****************************

View File

@ -510,8 +510,8 @@ The following functions are available:
<input type="radio" name="myradio" value="1" <?= set_radio('myradio', '1', true) ?> />
<input type="radio" name="myradio" value="2" <?= set_radio('myradio', '2') ?> />
.. note:: If you are using the Form Validation class, you must always specify
.. note:: If you are using the Validation class, you must always specify
a rule for your field, even if empty, in order for the ``set_*()``
functions to work. This is because if a Form Validation object is
functions to work. This is because if a Validation object is
defined, the control for ``set_*()`` is handed over to a method of the
class instead of the generic helper function.