summaryrefslogtreecommitdiffstats
path: root/system/libraries/Zip.php
AgeCommit message (Collapse)AuthorFilesLines
2022-03-03Merge branch '3.1-stable' into developAndrey Andreev1-1/+2
2022-03-02[ci skip] Update copyright noticesAndrey Andreev1-1/+2
2022-01-05Merge branch '3.1-stable' into developAndrey Andreev1-1/+1
2022-01-05Close #6021: Suppress possible E_DEPRECATION notices about ↵Andrey Andreev1-1/+1
mbstring.func_overload
2020-07-09[ci skip] Merge pull request #5970 from sapics/fix/user-guide-urlAndrey Andreev1-1/+1
Fix user guide url
2020-06-24Fix user guide urlsapics1-1/+1
Replace from https://codeigniter.com/user_guide/* to https://codeigniter.com/userguide3/*
2020-01-28Merge branch '3.1-stable' into developAndrey Andreev1-1/+2
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-28Merge pull request #5893 from aitorres/developLonnie Ezell1-2/+2
ZIP Library Memory Optimization
2020-01-27optimize memory allocation on zip libraryAndrés Ignacio Torres1-2/+2
Signed-off-by: Andrés Ignacio Torres <andresitorresm@gmail.com>
2019-01-02Merge pull request #5662 from jim-parry/copyright2019Instructor, BCIT1-3/+3
Update copyright date to 2019
2018-12-27Update copyright date to 2019Jim Parry1-2/+2
2018-05-18http:// to https://Mehdi Bounya1-3/+3
2018-03-04Fixed bug in ZIP libraryMehdi Bounya1-1/+1
the `read_dir` method ignores files that starts with a dot (like .htaccess) I looked through the documentation and it didn't mention that the method ignores hidden files so it must be a bug.
2018-01-09[ci skip] Merge pull request #5376 from jim-parry/copyright-updateAndrey Andreev1-2/+2
Annual copyright update Conflicts resolved: system/libraries/Cache/drivers/Cache_apcu.php
2018-01-09Annual copyright updateMaster Yoda1-2/+2
2017-03-24Merge branch '3.1-stable' into developAndrey Andreev1-5/+5
Conflicts resolved: system/core/CodeIgniter.php system/core/Common.php system/core/Input.php system/helpers/cookie_helper.php tests/codeigniter/helpers/html_helper_test.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/input.rst
2017-01-19More byte-safetyAndrey Andreev1-5/+5
2017-01-03Update copyright data to 2017Master Yoda1-2/+2
2016-12-31Update copyright data to 2017Master Yoda1-2/+2
2016-12-14Drop all PHP 5.3-related codeAndrey Andreev1-3/+0
2016-10-28Improve byte-safetyAndrey Andreev1-13/+61
2016-01-11[ci skip] Update ellislab.com links to https tooAndrey Andreev1-1/+1
2016-01-11[ci skip] Update codeigniter.com links to httpsAndrey Andreev1-2/+2
2016-01-11[ci skip] Bump year to 2016Andrey Andreev1-2/+2
2015-04-04Matched root_path's slashes with the name being replacedKyle Gadd1-1/+1
2015-01-21Remove closing blocks at end of PHP filesvlakoff1-3/+0
2015-01-20[ci skip] Change some log messages' levelAndrey Andreev1-1/+1
'Class Loaded' type of messages flood log files when log_threshold is set to 2 (debug). They're now logged as 'info' level. This is manually applying PR #1528, which was created to do the same thing, but became outdated.
2015-01-09Bulk (mostly documentation) updateAndrey Andreev1-13/+13
- Remove PHP version from license notices - Bump year number in copyright notices - Recommend PHP 5.4 or newer to be used - Tell Travis-CI to test on PHP 5.3.0 instead of the latest 5.3 version Related: #3450
2014-12-04Zip library changes related to PR #3341Andrey Andreev1-14/+10
- Drop compression_encoding option, it requires PHP 5.4. - Change default compression_level to 2 as this was previously the hard-coded default. - Improve on the doc changes made in the PR.
2014-11-19Exposed the arguments to gzcompress by adding public variables to the Zip ↵garrettair1-1/+14
library.
2014-10-27[ci skip] Switch to MIT license; close #3293Andrey Andreev1-14/+25
2014-06-03Fix a potential undefined variable errorAndrey Andreev1-1/+1
2014-03-14Fixed filemtimeAhmad Anbar1-1/+1
2014-03-13Partially revert PR #2190Andrey Andreev1-1/+1
The core shouldn't depend on constants that are not defined by itself
2014-02-26Don't use error suppression on is_dir(), file_exists()Andrey Andreev1-5/+6
2014-02-112013 > 2014darwinel1-1/+1
Update copyright notices from 2013 to 2014. And update one calendar example in user_guide from year 2013/2014 to 2014/2015.
2014-01-28Fix #2844Andrey Andreev1-1/+1
2014-01-15Fix #2822: Incorrect usage of fwrite()Andrey Andreev1-2/+10
We only used to check (and not always) if the return value of fwrite() is boolean FALSE, while it is possible that the otherwise returned bytecount is less than the length of data that we're trying to write. This allowed incomplete writes over network streams and possibly a few other edge cases.
2014-01-08Optimize get_instance() calls/assignmentsAndrey Andreev1-2/+1
2014-01-07Add ability for changing the original file path/name in CI_Zip::read_file()Andrey Andreev1-11/+14
Supersedes PR #884
2013-09-23[ci skip] Update Zip library docblocksAndrey Andreev1-19/+19
2013-01-01[ci skip] Happy new yearAndrey Andreev1-1/+1
2012-12-17Merge pull request #2077 from AndrewPodner/developAndrey Andreev1-1/+1
update for Issue #2064 - take 2
2012-12-17update for Issue #2064 (changed docblocks which return $this or only call a ↵Andrew Podner1-1/+1
method that returns $this to @return CI_DB_class_name)
2012-12-17Fix 2073Andrey Andreev1-1/+1
2012-11-01Manually apply PR #1594 (fixing phpdoc page-level generation/warnings)Andrey Andreev1-1/+2
Also partially fixes issue #1295, fixes inconsistencies in some page-level docblocks and adds include checks in language files.
2012-06-16Really important space fix :)vkeranov1-1/+1
2012-05-17Clean up the librariesAndrey Andreev1-6/+6
2012-04-27Fixed Cart, Migration, Parser and Zip librariesTimothy Warren1-0/+40