summaryrefslogtreecommitdiffstats
path: root/system/libraries/Form_validation.php
AgeCommit message (Collapse)AuthorFilesLines
2022-03-03Merge branch '3.1-stable' into developAndrey Andreev1-1/+2
2022-03-02[ci skip] Update copyright noticesAndrey Andreev1-1/+2
2022-01-05Drop more deprecated functionalityAndrey Andreev1-5/+0
2022-01-05Merge branch '3.1-stable' into developAndrey Andreev1-1/+1
2022-01-05Fix some minor PHP 8.1 deprecation warningsAndrey Andreev1-1/+1
2020-07-09[ci skip] Merge pull request #5970 from sapics/fix/user-guide-urlAndrey Andreev1-1/+1
Fix user guide url
2020-06-24Fix user guide urlsapics1-1/+1
Replace from https://codeigniter.com/user_guide/* to https://codeigniter.com/userguide3/*
2019-09-19Merge branch '3.1-stable' into developAndrey Andreev1-0/+7
Conflicts resolved: system/core/CodeIgniter.php system/libraries/Cache/drivers/Cache_redis.php system/libraries/Session/drivers/Session_redis_driver.php user_guide_src/source/changelog.rst user_guide_src/source/conf.py user_guide_src/source/installation/downloads.rst user_guide_src/source/installation/upgrading.rst
2019-05-10[ci skip] Fix #5755Andrey Andreev1-0/+7
2019-01-04Merge pull request #5659 from aanbar/validation_reset_dataAndrey Andreev1-1/+1
Fix #5605
2019-01-04Merge pull request #5659 from aanbar/validation_reset_dataAndrey Andreev1-1/+1
Fix #5605
2019-01-02Merge pull request #5662 from jim-parry/copyright2019Instructor, BCIT1-3/+3
Update copyright date to 2019
2018-12-27Update copyright date to 2019Jim Parry1-2/+2
2018-12-24if we are not validating an array & the post data contains an array then ↵Ahmad Anbar1-1/+1
nullify the post data for the field
2018-08-22[ci skip] Drop a dead return statementAndrey Andreev1-1/+0
2018-08-22[ci skip] Add exceptions for 2 error cases in FV set_rules()Andrey Andreev1-1/+2
2018-06-12Merge pull request #5510 from johndekroon/developAndrey Andreev1-1/+5
Only use the output of idn_to_ascii() if it worked properly
2018-06-12Merge pull request #5510 from johndekroon/developAndrey Andreev1-1/+5
Only use the output of idn_to_ascii() if it worked properly
2018-06-11Fixing codestyleJohn de Kroon1-1/+1
2018-05-25Only use the output of idn_to_ascii() if it worked properlyJohn de Kroon1-1/+5
2018-05-18http:// to https://Mehdi Bounya1-2/+2
2018-01-22Merge branch '3.1-stable' into developAndrey Andreev1-1/+4
Conflicts resolved: system/libraries/Email.php system/libraries/Form_validation.php
2018-01-22Fix a bug where INTL_IDNA_VARIANT_UTS46 was used while undeclaredAndrey Andreev1-1/+1
The constant was introduced in PHP 5.4, and is documented that way, but it actually depends on PHP being linked to ICU 4.6+, while the minimum requirement for compilation is 4.0 ... When this happens on PHP 7.2, an E_DEPRECATED notice will be emitted; there's currently a discussion on php-internals to resolve that issue.
2018-01-09[ci skip] Merge pull request #5376 from jim-parry/copyright-updateAndrey Andreev1-2/+2
Annual copyright update Conflicts resolved: system/libraries/Cache/drivers/Cache_apcu.php
2018-01-09Annual copyright updateMaster Yoda1-2/+2
2017-11-09More on #5003Andrey Andreev1-2/+4
2017-11-09Merge branch '3.1-stable' into developAndrey Andreev1-1/+1
2017-11-09[ci skip] Fix patch for #5300Andrey Andreev1-1/+1
2017-10-16Merge branch '3.1-stable' into developAndrey Andreev1-1/+1
2017-10-16[ci skip] Use INTL_IDNA_VARIANT_UCS46 to convert non-ASCII domain names in ↵Andrey Andreev1-1/+2
emails Close #5300
2017-10-06Fix issue 5202Zach Ploskey1-0/+2
Fix attempting to access data_ref before it is defined when validating an array input with multiple explicitly specified keys. Adds a test for the issue. Signed-off-by: Zach Ploskey <zach@ploskey.com>
2017-06-22Implement #2436 (access to FV processed data)Andrey Andreev1-29/+25
2017-06-21Implement #193: Validating entire arrays in a single function callAndrey Andreev1-8/+12
2017-06-19Merge branch '3.1-stable' into developAndrey Andreev1-2/+2
Conflicts resolved: system/core/CodeIgniter.php tests/codeigniter/libraries/Form_validation_test.php user_guide_src/source/changelog.rst user_guide_src/source/conf.py user_guide_src/source/installation/downloads.rst user_guide_src/source/installation/upgrading.rst
2017-06-19[ci skip] Fix a bug in FV valid_email()Andrey Andreev1-2/+2
2017-01-06Fix FV's valid_mac() on PHP 5.4Andrey Andreev1-1/+1
2017-01-06Add valid_mac() FV ruleAndrey Andreev1-0/+25
Close #3992
2017-01-03Update copyright data to 2017Master Yoda1-2/+2
2016-12-31Update copyright data to 2017Master Yoda1-2/+2
2016-12-01Remove previously deprecated FV Library method/rule prep_for_form()Andrey Andreev1-32/+0
2016-10-28Merge branch '3.1-stable' into developAndrey Andreev1-2/+2
Resolved conflicts: system/core/CodeIgniter.php user_guide_src/source/changelog.rst user_guide_src/source/conf.py user_guide_src/source/installation/downloads.rst user_guide_src/source/installation/upgrading.rst user_guide_src/source/libraries/form_validation.rst
2016-10-20FV: throw BadMethodCallException when set_rules() called withoutAndrey Andreev1-1/+5
2016-08-29Fix #4787Andrey Andreev1-2/+2
2016-08-11Removed useless checksVivek Dinesh1-6/+1
Based on GitHub discussion. Signed-off-by: Vivek Dinesh <vivekdinesh5@gmail.com>
2016-08-11URI schemes are not case-sensitiveVivek Dinesh1-2/+2
Signed-off-by: Vivek Dinesh <vivekdinesh5@gmail.com>
2016-08-10Merge pull request #4758 from butane/uri_scheme_caseAndrey Andreev1-1/+1
URI schemes are not case-sensitive
2016-07-28Remove dead code written for PHP 5.2Andrey Andreev1-12/+1
2016-05-25Fix #4639Andrey Andreev1-0/+11
Really fix #4633
2016-05-17Fix #4633Andrey Andreev1-71/+61
2016-03-16Fix a Form_validation bug that unnecessarily modifes $_POSTAndrey Andreev1-1/+1