summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/helpers/form_helper_test.php
AgeCommit message (Collapse)AuthorFilesLines
2015-01-21Remove closing blocks at end of PHP filesvlakoff1-2/+0
2013-02-19Fix form_upload() testAndrey Andreev1-1/+1
2012-11-01Fix issue #1953 (form values being escaped twice)Andrey Andreev1-0/+15
Re-instaing an improved form_prep() function, reverting most of the changes from 74ffd17ab06327ca62ddfe28a186cae7ba6bd459.
2012-10-26Deprecated form helper function form_prep().Andrey Andreev1-7/+32
This function has been broken for YEARS and it's value-caching logic has only introduced various problems. We have html_escape() since CI 2.1.0 which is a perfect replacement, so it should be used instead. Fixes #228 & #1630
2012-10-12Integrated vfsStream better and made paths constants VFS-baseddchill421-3/+5
Signed-off-by: dchill42 <dchill42@gmail.com>
2012-06-09Cleanup and optimize helper tests for speedAndrey Andreev1-57/+55
2012-03-16Add unit tests for form_helper.phptiyowan1-0/+252
* Does not test form_open() and form_open_multipart() * Does not test set_value(), set_select(), set_checkbox() and set_radio() * Above are in progress and will be added once certain issues are resolved