summaryrefslogtreecommitdiffstats
path: root/system
AgeCommit message (Collapse)AuthorFilesLines
2021-01-05[ci skip] Close #5973Andrey Andreev1-1/+1
2021-01-05[ci skip] Add TLS support for Session library Redis connection strings ↵Andrey Andreev1-1/+1
(related: issue #5982, PR #5983)
2020-07-09Merge branch '3.1-stable' into developAndrey Andreev2-16/+7
2020-07-09[ci skip] Correct fix for #5906Andrey Andreev1-1/+1
2020-07-09[ci skip] Merge pull request #5970 from sapics/fix/user-guide-urlAndrey Andreev145-153/+153
Fix user guide url
2020-06-24Fix user guide urlsapics135-140/+140
Replace from https://codeigniter.com/user_guide/* to https://codeigniter.com/userguide3/*
2020-05-18style: add empty line.ytetsuro1-0/+2
2020-04-02Fixed issue with creating a resource from png using Image_libDiego1-2/+3
2020-03-30[ci skip] Merge pull request #5895 from joshkel/pdo-db-closeAndrey Andreev1-0/+13
Fix database connection leak when closing PDO connection
2020-03-30[ci skip] Merge pull request #5895 from joshkel/pdo-db-closeAndrey Andreev1-0/+13
Fix database connection leak when closing PDO connection
2020-03-30[ci skip] Merge pull request #5903 from achraf52/patch-2Andrey Andreev1-1/+1
Add HTTP/2.0 server protocol value variation
2020-03-30[ci skip] Fix #5906Andrey Andreev1-12/+3
2020-02-11[ci skip] Fix #5901Andrey Andreev2-4/+4
2020-02-10Add server protocol value variationAchraf Almouloudi1-1/+1
In some Apache servers running the HTTP/2 protocol, calling "$_SERVER['SERVER_PROTOCOL']" may return "HTTP/2.0" instead, thus causing CodeIgniter to (incorrectly) determine the output header protocol to use. This commit adds the different variation to fix that.
2020-01-29fix too many connection for oracleytetsuro1-0/+8
2020-01-28[ci skip] Merge pull request #5890 from jerkob/developAndrey Andreev1-0/+12
Adds a public trans_active function to determine transaction state
2020-01-28[ci skip] Merge pull request #5890 from jerkob/developAndrey Andreev1-0/+12
Adds a public trans_active function to determine transaction state
2020-01-28[ci skip] Merge pull request #5882 from adevesa/webp-permissionAndrey Andreev1-2/+2
image/webp upload type
2020-01-28[ci skip] Merge pull request #5882 from adevesa/webp-permissionAndrey Andreev1-2/+2
image/webp upload type
2020-01-28Merge branch '3.1-stable' into developAndrey Andreev4-6/+40
Conflicts resolved: .travis.yml system/database/DB_query_builder.php system/helpers/captcha_helper.php system/libraries/Cache/drivers/Cache_redis.php system/libraries/Zip.php
2020-01-28[ci skip] Add comment about PR #5893 changesAndrey Andreev1-1/+2
2020-01-28Fix database connection leak when closing PDO connectionJosh Kelley1-0/+13
We discovered a resource leak (database connection leak) in our application's test suite. We investigated and discovered that, although the test suite was calling `CI_DB_driver::close()` after each test, the `result_id` member variable still maintained an internal reference to the database connection, which kept the connection from being closed. This is using pdo_sqlsrv; I have not tested other PDO drivers. Signed-off-by: Josh Kelley <joshkel@gmail.com>
2020-01-28Merge pull request #5893 from aitorres/developLonnie Ezell1-2/+2
ZIP Library Memory Optimization
2020-01-28Small tweak to `trans_active()` descriptionjerkob1-1/+1
2020-01-28Replace `trans_depth()` with `trans_active()`jerkob1-4/+4
Per code review, replace `trans_depth()` function that returns the protected `_trans_depth` property with a `trans_active()` function that returns a boolean indicating whether a transaction is currently active.
2020-01-28Update Upload.phpDevesa Agustín1-1/+2
2020-01-27optimize memory allocation on zip libraryAndrés Ignacio Torres1-2/+2
Signed-off-by: Andrés Ignacio Torres <andresitorresm@gmail.com>
2020-01-27[ci skip] Merge pull request #5891 from franciscollanquipichun/developAndrey Andreev26-26/+26
Inserted required attribute `lang` in html tags
2020-01-27[ci skip] Merge pull request #5881 from InSitu-Software/query_builder_full_joinAndrey Andreev1-1/+1
Added FULL OUTER JOIN to QueryBuilder
2020-01-27[ci skip] Merge pull request #5881 from InSitu-Software/query_builder_full_joinAndrey Andreev1-1/+1
Added FULL OUTER JOIN to QueryBuilder
2020-01-27[ci skip] Fix #5879Andrey Andreev1-3/+3
2020-01-27[ci skip] Fix #5879Andrey Andreev1-3/+3
2020-01-25inserted required attribute in html tagFrancisco Javier Llanquipichun Garcia26-26/+26
Signed-off-by: Francisco Javier Llanquipichun Garcia <francisco.llanquipichun@gmail.com>
2020-01-24Add a trans_depth functionjerkob1-0/+12
Enables retrieval of the current _trans_depth
2020-01-14Update Upload.phpDevesa Agustín1-1/+1
2020-01-08Update Image_lib.phpDevesa Agustín1-9/+21
2020-01-08Update imglib_lang.phpDevesa Agustín1-0/+1
2020-01-08Update Image_lib.phpDevesa Agustín1-19/+33
2020-01-08Change Upload.php for image/webpDevesa Agustín1-3/+2
2020-01-02Added FULL [OUTER] JOIN to CI_DB_query_builderChristian Mohr1-1/+1
2019-11-25[ci skip] Merge pull request #5856 from ↵Andrey Andreev3-4/+50
ytetsuro/fix/oracle12.1-support-auto-increment Enhancement oracle dbforge, auto_increment can be used when using oracle 12.1.
2019-11-25[ci skip] Merge pull request #5856 from ↵Andrey Andreev3-4/+50
ytetsuro/fix/oracle12.1-support-auto-increment Enhancement oracle dbforge, auto_increment can be used when using oracle 12.1.
2019-11-01[ci skip] Merge pull request #5861 from nebkat/patch-1Andrey Andreev1-1/+1
cache: redis: Check version of redis not phpredis
2019-10-28feat: Modified to useable auto increment.ytetsuro1-1/+25
2019-10-28fix: Fixed a bug that could not get the version number when first call.ytetsuro1-2/+2
2019-10-21cache: redis: Check version of redis not phpredisNebojsa Cvetkovic1-1/+1
PhpRedis is installed as redis. Change matches the check in the Redis session driver.
2019-10-21[ci skip] Fix #5857Andrey Andreev1-0/+4
2019-10-14feat: support auto_increment for orace 12.1ytetsuro1-1/+23
2019-10-10fix static field nameClaudio Galdiolo1-1/+1
field with name $_delete_name already defined, use $_sRemove_name
2019-10-08Merge pull request #5842 from sapics/chore/fix-indentAndrey Andreev10-28/+28
Fix indentation / clear whitespace