summaryrefslogtreecommitdiffstats
path: root/system
AgeCommit message (Collapse)AuthorFilesLines
2015-03-17Removed bug fixes from this branch. Will recommit them on a separate branchDavid Woods1-7/+9
Signed-off-by: David Woods <d.woods92@gmail.com>
2015-03-17Fixed bugs in form_validation for methods matches, differs, and valid_base64.David Woods1-9/+7
Implemented tests for valid and invalid inputs for all basic rules available for form_validation. The invalid input data currently doesn't pass all tests. Signed-off-by: David Woods <d.woods92@gmail.com>
2015-03-16update documentation in database/query_builder.rst, change 2 tabs + 4 spaces ↵yaoshanliang1-3/+3
to 3 tabs.
2015-03-16Merge branch 'develop' of github.com:bcit-ci/CodeIgniter into developyaoshanliang1-1/+1
2015-03-15[ci skip] Use DIRECTORY_SEPARATOR instead of / in CI_ConfigAndrey Andreev1-1/+1
2015-03-15add changelog and documentation for adding an optional parameter to ↵yaoshanliang1-5/+6
``count_all_results()``
2015-03-14add a judgment of whether reset selectyaoshanliang1-4/+5
2015-03-14add a judgment of whether reset selectyaoshanliang1-2/+5
2015-03-13[ci skip] Remove NS usage in CI_SessionAndrey Andreev1-1/+1
It was accidental
2015-03-13Close #3663Andrey Andreev1-1/+1
2015-03-12Merge pull request #3659 from bjjay/bjjay-patch-1Andrey Andreev1-1/+1
[ci skip] Correct a comment link typo
2015-03-12Throw an exception on invalid session driver configAndrey Andreev1-6/+2
2015-03-12Correct a comment link typobjjay1-1/+1
2015-03-10Add array typehint to CI_Email::__construct()Andrey Andreev1-1/+1
2015-03-09Reduce once MB_ENABLED checkingbjjay1-9/+3
The checking is done in the compat file system/core/compat/mbstring.php
2015-03-07Housekeeping.Master Yoda1-1/+1
Corrected typo in user guide for sessions, corrected misepelled key in calendar language file, added two links & updated wording on the repo readme. Signed-off-by:Master Yoda <jim_parry@bcit.ca>
2015-03-07Housekeeping.Master Yoda1-1/+1
Corrected typo in user guide for sessions, corrected misepelled key in calendar language file, added two links & updated wording on the repo readme. Signed-off-by:Master Yoda <jim_parry@bcit.ca>
2015-03-07Merge branch 'develop' of https://github.com/bcit-ci/CodeIgniter into ↵Master Yoda10-122/+124
fix/housekeeping
2015-03-07Housekeeping.Master Yoda1-1/+1
Corrected typo in user guide for sessions, corrected misepelled key in calendar language file, added two links & updated wording on the repo readme. Signed-off-by:Master Yoda <jim_parry@bcit.ca>
2015-03-05Fix #3642Andrey Andreev1-7/+5
2015-03-04Fix #3627: Keep timed locks for more than 5 secondsAndrey Andreev3-49/+23
Emulated locks for Redis and Memcached now have a TTL of 300 seconds (the default HTTP request timeout value on many environments) and 30 attemps, each separated by sleep(1), are made by the blocked request to try and obtain a lock if it has been freed. Additionaly, the blocking time for MySQL's locks, which are also timed, is also set to 300 seconds.
2015-03-03Remove an unused var in CI_LogAndrey Andreev1-8/+1
Was suggested as part of PR #3630, which was rejected due to numerous other changes
2015-02-27Make CI_Input:: read-only as wellAndrey Andreev1-1/+5
2015-02-27Fix #3633Andrey Andreev1-0/+1
2015-02-27Eh ... really fix that notice (#3604)Andrey Andreev1-0/+2
2015-02-27Fix an E_NOTICE caused by #3604Andrey Andreev1-13/+30
2015-02-26Merge pull request #3604 from Ignasimg/patch-1Andrey Andreev1-1/+15
Add support for raw_input_stream
2015-02-26Update Input.phpIgnasimg1-3/+3
2015-02-26funny tabs & spaces added and removed.Ignasimg1-18/+20
2015-02-23[ci skip] Fix #3618Andrey Andreev1-1/+1
2015-02-22Common.php: set_status_header: ImproveFieah1-46/+45
1. Verify $code before define $stati 2. Only convert $code to int and define $stati when needed, possibly can save some memory.
2015-02-22Cache: is_supportedFieah2-6/+4
1. Cache_redis: Standardize the style as other driver. 2. Cache_wincache: Also check wincache.ucenabled
2015-02-21Fix #3610Andrey Andreev1-1/+3
2015-02-20Added support for raw_input_stream property.Ignasimg1-53/+28
2015-02-19Fix postgre driver configAndrey Andreev2-1/+1
2015-02-19Remove 'autoinit' DB settingAndrey Andreev10-43/+2
It doesn't make sense to do a load->database() call but not connect to the database. IIRC there was more stuff in CI_DB_driver::initialize() at some point, so that was probably the reason why the setting existed in the first place. However, now it only results in users making invalid bug reports because they don't understand the feature ... Examples during just the past 2 weeks: #3571 #3601 #3607
2015-02-19Make set_status_header() a dummy under CLIAndrey Andreev1-0/+5
Close #3605
2015-02-19documentation changesIgnasimg1-8/+8
2015-02-18Fix #3593Andrey Andreev1-28/+25
Revert "fixes" for #167, #388, #705 (also #1326) as it turns out URL-decoding isn't compliant with the CGI/1.1 specification. RFC 3875: http://www.faqs.org/rfcs/rfc3875.html
2015-02-17Finishing PR #3596 <!DOCTYPE html>Ivan Tcholakov3-3/+6
2015-02-17Fix #3572: CI_Security::_remove_evil_attributes()Andrey Andreev1-21/+6
2015-02-15add <!DOCTYPE html>Tjoosten25-25/+50
2015-02-13Fix a typo in CI_SessionAndrey Andreev1-1/+1
2015-02-11Fix undefined variable notice in Session redis, memcached driversAndrey Andreev2-2/+2
2015-02-09Fix #3579Andrey Andreev1-2/+2
2015-02-08Merge pull request #3577 from dev-ggallon/Fix_DatabaseAndrey Andreev2-2/+2
Fix unreachable code in Database/drivers/pdo/subdrivers
2015-02-08Deleted spacesGwenael Gallon2-2/+2
2015-02-08Revert "Remove unnecessary return"Gwenael Gallon1-1/+1
This reverts commit 96901ff3849c19351c7382689e6a970629586aae.
2015-02-08Revert "Remove unnecessary return"Gwenael Gallon6-6/+6
This reverts commit 3053ded760a9657bdc7b935beb61d2f632859928.
2015-02-08Revert "Remove unnecessary return"Gwenael Gallon8-8/+8
This reverts commit 843d2506e1a1eab17b871bc38b204d27047c9ff7.