summaryrefslogtreecommitdiffstats
path: root/system/libraries
AgeCommit message (Collapse)AuthorFilesLines
2016-12-31Update copyright data to 2017Master Yoda34-68/+68
2016-12-16[ci skip] Remove a function_exists() call from CI_Image_libAndrey Andreev1-1/+1
We use this function elsewhere without checking for existence; nobody has complained
2016-12-14Drop all PHP 5.3-related codeAndrey Andreev7-124/+8
2016-12-14Merge branch '3.1-stable' into developAndrey Andreev1-18/+11
2016-12-12Remove previously deprecated Cart LibraryAndrey Andreev1-567/+0
2016-12-12Really fix #4937Andrey Andreev1-6/+6
2016-12-09[ci skip] Fix #4937Andrey Andreev1-13/+6
2016-12-01Remove previously deprecated FV Library method/rule prep_for_form()Andrey Andreev1-32/+0
2016-12-01Remove previously deprecated Javascript LibraryAndrey Andreev3-1943/+0
2016-12-01Remove a function_exists('escapeshellarg') check from CI_UploadAndrey Andreev1-3/+1
This didn't originally exist, but was changed due to #1494. We no longer tolerate such broken environments
2016-12-01Switch CI_Email::$validate to On by defaultAndrey Andreev1-1/+1
Relevant: #4844
2016-12-01Merge branch '3.1-stable' into developAndrey Andreev7-62/+64
2016-12-01Fix #4844Andrey Andreev1-1/+1
2016-11-29Fix #4923Andrey Andreev3-41/+33
2016-11-22Fix #4916Andrey Andreev1-2/+2
2016-11-07Fix #4902Andrey Andreev1-1/+1
2016-10-31[ci skip] Fix #4887Andrey Andreev1-13/+23
2016-10-31Fix #4890Andrey Andreev1-4/+4
2016-10-28Merge branch '3.1-stable' into developAndrey Andreev6-43/+251
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-28Merge pull request #4826 from gxgpet/develop2Andrey Andreev1-0/+1
Make CI_Table::clear() reset captions
2016-10-28Improve byte-safetyAndrey Andreev2-32/+129
2016-10-27[ci skip] Another attempt at #4874Andrey Andreev1-2/+3
2016-10-27Fix #4874Andrey Andreev1-9/+54
2016-10-22Close #4830, #3649Andrey Andreev2-6/+48
2016-10-20FV: throw BadMethodCallException when set_rules() called withoutAndrey Andreev1-1/+5
2016-10-20[ci skip] Polish changes and add a changelog entry for PR #4855Andrey Andreev1-1/+1
2016-10-20Update Xmlrpc.phpInstructor, Computer Systems Technology1-1/+1
Fix style
2016-10-20[ci skip] Polish changes and add a changelog entry for PR #4855Andrey Andreev1-2/+2
2016-10-20Merge pull request #4855 from jim-parry/fix/xmlrpc-timeoutInstructor, Computer Systems Technology1-3/+2
Fix xmlrpc timeout, #4843
2016-10-20Merge pull request #4863 from gxgpet/develop4Andrey Andreev1-0/+1
Add missing method chaining support to CI_Table::set_caption()
2016-10-20- fixed method chaining for set_caption in Table helper.George Petculescu1-0/+1
2016-10-18Fix xmlrpc timeout, #4843Master Yoda1-3/+2
Signed-off-by:Master Yoda <jim_parry@bcit.ca>
2016-10-10- revert: set_caption method chaining will be fixed lately.George Petculescu1-1/+0
2016-10-03[ci skip] Alter a docblockAndrey Andreev1-1/+1
2016-10-03Fix #4823Andrey Andreev1-2/+25
2016-10-01- fixed codingstyle (2) ...George Petculescu1-1/+1
2016-10-01- fixed codingstyleGeorge Petculescu1-1/+1
2016-10-01- small fix for HTML Table library: caption is not clearing properly and ↵George Petculescu1-0/+2
method chaining has been fixed for set_caption method.
2016-09-27Add database index by defaultlogach1-1/+7
Select database if exists
2016-08-29Fix #4787Andrey Andreev1-2/+2
2016-08-22Merge branch '3.1-stable' into developAndrey Andreev1-3/+20
2016-08-22Fix CI_Upload errors on PHP 7.1Andrey Andreev1-3/+20
2016-08-22Merge pull request #4778 from antydemant/patch-1Andrey Andreev1-2/+2
[ci skip] Docblock return type corrections
2016-08-21return fixIgor Ostapchuk1-2/+2
2016-08-11Merge pull request #4764 from butane/uri_scheme_caseAndrey Andreev2-8/+3
URI schemes are not case-sensitive
2016-08-11Removed useless checksVivek Dinesh1-6/+1
Based on GitHub discussion. Signed-off-by: Vivek Dinesh <vivekdinesh5@gmail.com>
2016-08-11Merge pull request #4762 from tianhe1986/develop_cache_file_metadataAndrey Andreev1-2/+2
Cache_file: use $data['time'] for calculating expired time.
2016-08-11Merge pull request #4762 from tianhe1986/develop_cache_file_metadataAndrey Andreev1-2/+2
Cache_file: use $data['time'] for calculating expired time.
2016-08-11Using "! isset($a, $b, ……)" instead of "! isset($a) OR ! isset($b) OR ↵tianhe19861-1/+1
……" Signed-off-by: tianhe1986 <w1s2j3229@163.com>
2016-08-11URI schemes are not case-sensitiveVivek Dinesh2-4/+4
Signed-off-by: Vivek Dinesh <vivekdinesh5@gmail.com>