summaryrefslogtreecommitdiffstats
path: root/system/libraries
AgeCommit message (Collapse)AuthorFilesLines
2012-03-12Just some cleanup in the Table classAndrey Andreev1-7/+3
2012-03-12merged latest develop branch.Mike Funk30-41/+51
2012-03-12Changed space to tab in docblock.Mike Funk1-1/+1
2012-03-12Merge pull request #1079 from mikedfunk/feature/form_val_configAndrey Andreev1-0/+12
Feature/form val config error_prefix and error_suffix
2012-03-09Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon1-11/+9
2012-03-09Bumped CodeIgniter's PHP requirement to 5.2.4.Phil Sturgeon30-30/+30
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-08Merge branch 'develop' of https://github.com/EllisLab/CodeIgniter into ↵Mike Funk1-11/+9
feature/form_val_config
2012-03-08moved delimiter assigning to constructor, removed extra function.Mike Funk1-24/+10
2012-03-08Fixed bug with rules not being passed to _config_delimiters or back into ↵Mike Funk1-3/+5
$this->_config_rules.
2012-03-07Fix issue #501Andrey Andreev1-11/+9
2012-03-07merged latest develop branch, fixed changelog conflict.Mike Funk6-290/+354
2012-03-07merged from develop, fixed conflict in user guide.Mike Funk6-290/+354
2012-03-06Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon1-4/+6
2012-03-06Removed reset_validation() method from run() methodJonoB1-4/+5
2012-03-06Fixed a bug in CI_Session::_unserialize()Andrey Andreev1-4/+6
2012-03-04Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developJohn Crepezzi8-540/+497
2012-03-04Fix indentation for changes from pull #1121Andrey Andreev1-25/+24
2012-03-04Allow users to specify an array for validation, instead of alway using the ↵JonoB1-12/+55
$_POST array
2012-03-04Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon5-222/+162
2012-03-04Merged conflicts.Phil Sturgeon1-1/+1
2012-03-03Fixed a bug - CI_Upload::_file_mime_type() could've failed if popen() is ↵tubalmartin1-1/+1
used for the detection.
2012-03-02Merge pull request #1107 from diogoosorio/developAndrey Andreev1-2/+5
Fix issue #1080
2012-03-02Made the code more readable, updated the changelog.Diogo Osório1-1/+1
2012-03-02#1080 - Check if the SMTP connection and authentication were successfull.Diogo Osório1-2/+5
2012-03-02Limit db session select to single rowTimothy Warren1-1/+1
2012-03-02updated error_array #565Michiel Vugteveen1-0/+14
2012-03-02Fix issue #803 (Profiler library didn't handle objects properly)Andrey Andreev1-7/+5
2012-03-01Fix issue #153 (E_NOTICE generated by getimagesize())Andrey Andreev1-9/+7
2012-03-01Some other minor improvements to the Email libraryAndrey Andreev1-81/+67
2012-03-01Switch ANDs to &&, || to OR in the Email classAndrey Andreev1-14/+13
2012-03-01Remove access lines and fix method description blocks in the Email classAndrey Andreev1-84/+25
2012-03-01Switch private properties in the Email class to protectedAndrey Andreev1-24/+25
2012-02-29removed double slashMichiel Vugteveen1-1/+1
2012-02-29Merged in 2.1-stable changes.Phil Sturgeon2-24/+81
2012-02-28tab separator in _config_delimiters dockblock.Mike Funk1-1/+1
2012-02-28using tabs as @item seperators in docblocks.Mike Funk1-2/+2
2012-02-28fixed some mismatched brackets.Mike Funk1-4/+4
2012-02-28changed _config_delimiters() to protected.Mike Funk1-1/+1
2012-02-28Replace AND with &&Andrey Andreev1-1/+1
2012-02-28Fix issue #177Andrey Andreev1-28/+14
2012-02-24added config process method checking for delimiter values, updated changelog ↵Mike Funk1-0/+24
and user guide.
2012-02-24added config check, changelog entry, and user guide update.Mike Funk1-1/+15
2012-02-17Fixed issue #960Marcos Garcia1-7/+0
2012-02-15Lowered the file permissions for file caches.Yorick Peterse1-1/+1
See #1045 for more information. Signed-off-by: Yorick Peterse <yorickpeterse@gmail.com>
2012-02-07Renaming equal_to_greater_than to greater_than_equal_to, equal_to_less_than ↵Nick Busey1-2/+2
to less_than_equal_to
2012-02-02Merge remote-tracking branch 'upstream/develop' into develop-image-libAndrey Andreev1-56/+77
2012-02-02Adding equal to greater than, equal to less than form validators.Nick Busey1-1/+37
2012-02-01Merge upstreamAndrey Andreev1-75/+37
2012-02-01Merge remote-tracking branch 'upstream/develop' into develop-image-libAndrey Andreev2-75/+38
2012-01-25Merge pull request #842 from narfbg/develop-encryptPhil Sturgeon1-75/+37
Improve the Encryption library