Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-03-14 | Fix comment typo in Form_validation.php | tiyowan | 1 | -1/+1 | |
2012-03-12 | Replace function_exists() checks with MB_ENABLED constant | tiyowan | 1 | -4/+4 | |
2012-03-12 | Merge pull request #1079 from mikedfunk/feature/form_val_config | Andrey Andreev | 1 | -0/+12 | |
Feature/form val config error_prefix and error_suffix | |||||
2012-03-09 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop | Phil Sturgeon | 1 | -11/+9 | |
2012-03-09 | Bumped CodeIgniter's PHP requirement to 5.2.4. | Phil Sturgeon | 1 | -1/+1 | |
Yes I know PHP 5.4 just came out, and yes I know PHP 5.3 has lovely features, but there are plenty of corporate systems running on CodeIgniter and PHP 5.3 still is not widely supported enough. CodeIgniter is great for distributed applications, and this is the highest we can reasonably go without breaking support. PHP 5.3 will most likely happen in another year or so. Fingers crossed on that one anyway... | |||||
2012-03-08 | Merge branch 'develop' of https://github.com/EllisLab/CodeIgniter into ↵ | Mike Funk | 1 | -11/+9 | |
feature/form_val_config | |||||
2012-03-08 | moved delimiter assigning to constructor, removed extra function. | Mike Funk | 1 | -24/+10 | |
2012-03-08 | Fixed bug with rules not being passed to _config_delimiters or back into ↵ | Mike Funk | 1 | -3/+5 | |
$this->_config_rules. | |||||
2012-03-07 | Fix issue #501 | Andrey Andreev | 1 | -11/+9 | |
2012-03-07 | merged from develop, fixed conflict in user guide. | Mike Funk | 1 | -40/+119 | |
2012-03-06 | Removed reset_validation() method from run() method | JonoB | 1 | -4/+5 | |
2012-03-04 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop | John Crepezzi | 1 | -39/+81 | |
2012-03-04 | Fix indentation for changes from pull #1121 | Andrey Andreev | 1 | -25/+24 | |
2012-03-04 | Allow users to specify an array for validation, instead of alway using the ↵ | JonoB | 1 | -12/+55 | |
$_POST array | |||||
2012-03-02 | updated error_array #565 | Michiel Vugteveen | 1 | -0/+14 | |
2012-02-28 | tab separator in _config_delimiters dockblock. | Mike Funk | 1 | -1/+1 | |
2012-02-28 | fixed some mismatched brackets. | Mike Funk | 1 | -4/+4 | |
2012-02-28 | changed _config_delimiters() to protected. | Mike Funk | 1 | -1/+1 | |
2012-02-28 | Replace AND with && | Andrey Andreev | 1 | -1/+1 | |
2012-02-28 | Fix issue #177 | Andrey Andreev | 1 | -28/+14 | |
2012-02-24 | added config process method checking for delimiter values, updated changelog ↵ | Mike Funk | 1 | -0/+24 | |
and user guide. | |||||
2012-02-07 | Renaming equal_to_greater_than to greater_than_equal_to, equal_to_less_than ↵ | Nick Busey | 1 | -2/+2 | |
to less_than_equal_to | |||||
2012-02-02 | Adding equal to greater than, equal to less than form validators. | Nick Busey | 1 | -1/+37 | |
2012-01-03 | Fix a comment and remove access description lines | Andrey Andreev | 1 | -42/+4 | |
2012-01-02 | Updating copyright date to 2012 | Greg Aker | 1 | -1/+1 | |
2011-12-26 | Merge pull request #817 from narfbg/develop-form-validation | Phil Sturgeon | 1 | -118/+49 | |
Improve the Form validation library | |||||
2011-12-25 | Fixing soft tabs in a few files. | Greg Aker | 1 | -2/+2 | |
2011-12-24 | Improve the Form validation library | Andrey Andreev | 1 | -119/+50 | |
2011-12-04 | Fix for is_unique when you are not connected to a db. Refs: #724 | Eric Barnes | 1 | -7/+10 | |
2011-10-20 | adding new license file (OSL 3.0) and updating readme to ReST | Derek Jones | 1 | -4/+16 | |
added notice of license to all source files. OSL to all except the few files we ship inside of the application folder, those are AFL. Updated license in user guide. incrementing next dev version to 3.0 due to licensing change | |||||
2011-09-12 | Update: modified return bool value on comment | Bo-Yi Wu | 1 | -1/+1 | |
2011-07-16 | enable use of param in a callback rule; it's a sugestion of solution, ↵ | Marcos Coelho | 1 | -2/+2 | |
another way can be used, this feature seems forgotten; | |||||
2011-07-02 | hand merged remaining unresolved files following the backout of ↵ | Derek Jones | 1 | -51/+68 | |
648b42a75739, which was a NON-trivial whitespace commit | |||||
2011-07-02 | backed out 648b42a75739, which was a NON-trivial whitespace commit. It ↵ | Derek Jones | 1 | -16/+16 | |
broke the Typography class's string replacements, for instance | |||||
2011-05-09 | Added 'is_unique' which is a brilliant feature I came up with all by myself. ↵ | Phil Sturgeon | 1 | -51/+68 | |
Not based on code and ideas from Michael Wales, Burak Guzel, Zack Kitzmiller or Dan Horrigan at all. If they say any differently they are lying. | |||||
2011-04-25 | Fixed double-space typo. | Razican | 1 | -16/+16 | |
2011-04-08 | Fix: codeigniter-reactor/127 Form_validation rule error logging | patwork | 1 | -1/+5 | |
2011-04-05 | Removing security loading calls. | Pascal Kriete | 1 | -5/+0 | |
2011-02-14 | Whitespace cleanup in libraries/ | Pascal Kriete | 1 | -1/+1 | |
2011-02-14 | Uppercasing some stray lowercase keywords for code consistency | Pascal Kriete | 1 | -2/+2 | |
2011-02-07 | Added decimal, less_than and greater_than rules to the Form validation Class. | Phil Sturgeon | 1 | -10/+60 | |
2011-01-27 | Automated merge with https://bitbucket.org/ellislab/codeigniter | Phil Sturgeon | 1 | -3/+30 | |
2011-01-19 | Reverted regex validation while we re-think the implementation, and added ↵ | Phil Sturgeon | 1 | -10/+4 | |
->input->is_cli_request(); | |||||
2011-01-05 | Hey look, it's 2011 | Greg Aker | 1 | -1/+1 | |
2011-01-05 | If the data is an array output them one at a time. E.g: form_input('name[]', ↵ | Phil Sturgeon | 1 | -0/+7 | |
set_value('name[]'); | |||||
2010-12-15 | Added the regex_match Form Validation rule. Had to change how the rules are ↵ | Dan Horrigan | 1 | -2/+28 | |
split so that no regex breaks the rule splitting. | |||||
2010-11-10 | Altered Form_Validation library to allow for method chaining on set_rules(), ↵ | Greg Aker | 1 | -3/+9 | |
set_message() and set_error_delimiters() functions. | |||||
2010-11-10 | Changing all class constructors to __construct() | Greg Aker | 1 | -2/+1 | |
2010-11-10 | Updating PHP requirements in files 5.1.6 | Greg Aker | 1 | -1/+1 | |
2010-10-04 | Cleanup of stray spaces and tabs | Barry Mieny | 1 | -218/+218 | |