summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/changelog.rst
AgeCommit message (Collapse)AuthorFilesLines
2014-02-19Add compatibility layer for array_column(), array_replace(), ↵Andrey Andreev1-1/+7
array_replace_recursive()
2014-02-18[ci skip] Clean-up following PR #2864Andrey Andreev1-2/+2
2014-02-18Add an ext/hash compatibility layer (just hash_pbkdf2(), for now)Andrey Andreev1-1/+1
2014-02-17documentation for calendar updatesAndrew1-0/+1
change log and user guide updates for calendar update
2014-02-15Rename CI_Utf8::_is_ascii() to is_ascii() and make it publicAndrey Andreev1-0/+1
No reason for it to be protected.
2014-02-13[ci skip] Add compatibility functions documentation + Sphinx build fixes for ↵Andrey Andreev1-1/+1
Cart
2014-02-13Fix #2364Andrey Andreev1-0/+1
2014-02-13Add language translation support to CI_Pagination (#1589)Andrey Andreev1-2/+3
2014-02-13[ci skip] Polish changes from #2874Andrey Andreev1-3/+3
2014-02-13Merge pull request #2874 from aanbar/developAndrey Andreev1-0/+1
[Cart Library] Allow updating all properties for an item.
2014-02-13Added changelog entry.Ahmad Anbar1-0/+1
An example to the docs. Tidy code a little bit.
2014-02-13Update Text and Inflector helpers to utilize mbstring, if availableAndrey Andreev1-3/+8
Text: word_wrap(), ellipsize() Inflector: humanize(), underscore() (rel #2855)
2014-02-13Introducing compatibility layersAndrey Andreev1-0/+1
- Limited support for mbstring (mb_strlen(), mb_strpos(), mb_substr() only) via iconv. Falls back to regular strlen(), strpos(), substr() if iconv is not available. - Password hashing, dependant on CRYPT_BLOWFISH (2y version, available since PHP 5.3.7) availability.
2014-02-11Utf8/iconv/mbstring-related changesAndrey Andreev1-0/+7
2014-02-11A bug fix and optimizations in CI_TableAndrey Andreev1-0/+1
2014-02-11Fix issue #43Andrey Andreev1-0/+1
2014-02-09Merge branch 'develop' into 'feature/encryption'Andrey Andreev1-134/+139
2014-02-08Add method chaining support to CI_TableAndrey Andreev1-1/+5
2014-02-08Add method chaining support to Calendar & Pagination libsAndrey Andreev1-0/+2
2014-02-08Make CI_Email::set_alt_message() parameter mandatory (optional doesn't make ↵Andrey Andreev1-1/+1
sense)
2014-02-07[ci skip] Really fix wrong doc referencesAndrey Andreev1-1/+1
2014-02-07[ci skip] Re-format changelog entriesAndrey Andreev1-93/+92
2014-02-07[ci skip] Replace :php:func: usage with just :func:Andrey Andreev1-5/+5
2014-02-07Merge branch 'develop' into 'feature/user-guide-cleanup'Andrey Andreev1-3/+4
2014-02-06Merge changes from developAndrey Andreev1-1/+2
2014-02-05Fix #2856Andrey Andreev1-1/+2
2014-02-05Merge branch 'develop' into feature/encryptionAndrey Andreev1-1/+1
2014-02-05Integrate CI_Encryption into the frameworkAndrey Andreev1-7/+10
TODO: Add documentation in user_guide_src/source/libraries/encryption.rst
2014-02-03[ci skip] Update info on function_usableAndrey Andreev1-1/+1
2014-01-24Merge branch 'develop' into feature/user-guide-cleanupAndrey Andreev1-18/+20
2014-01-24Righting a wrong in the Session libraryAndrey Andreev1-16/+13
- Change userdata(), flashdata(), tempdata() to return all the respective data when no parameter is passed. - Revert the addition of all_flashdata(). - Deprecate all_userdata(). - Fix related changelog entries that were all inconsistent.
2014-01-22CI_Security::_decode_entity() to replace dangerous HTML5 entitiesAndrey Andreev1-1/+2
Related to issue #2771
2014-01-21Merge branch 'feature/dbforge_table_attributes' into developAndrey Andreev1-1/+2
2014-01-21SQLSRV improvementsAndrey Andreev1-0/+3
Mainly for performance (issue #2474), but also added a 'scrollable' configuration flag and auto-detection for SQLSRV_CURSOR_CLIENT_BUFFERED (only available since SQLSRV 3).
2014-01-20Add support for optional table attributes to CI_DB_forge::create_table()Andrey Andreev1-1/+2
Supersedes PRs #989, #2776 Related issue: #41
2014-01-20[ci skip] Replace incorrect usage of 'then', where it should be 'than'Andrey Andreev1-1/+1
2014-01-20Merge branch 'develop' into feature/user-guide-cleanupAndrey Andreev1-26/+112
2014-01-20Fix #2729Andrey Andreev1-0/+1
2014-01-20Fix #2737Andrey Andreev1-0/+1
2014-01-20Merge branch 'develop' into feature/output_compressed_cacheAndrey Andreev1-0/+1
2014-01-20Polish changes from PR #2830Andrey Andreev1-1/+1
2014-01-19Added save_queries config setting in config/database.phpAhmedul Haque Abid1-0/+1
2014-01-18Merge branch 'develop' into feature/output_compressed_cacheAndrey Andreev1-10/+18
2014-01-17Merge branch 'feature/uri_routing_overhaul' into 'develop'Andrey Andreev1-8/+14
2014-01-17Add autoloading library aliasing support (supersedes PR #2824)Andrey Andreev1-1/+1
2014-01-17Minor changes related to CI_User_agentAndrey Andreev1-0/+1
Fixed a bug where both accept_charset() and accept_lang() improperly parsed headers if they contained spaces between data separators (which is valid). Also made is_referral() testable by replacing its static cache var with a class property and added some more unit tests for the library as a whole.
2014-01-16URI Routing overhaulAndrey Andreev1-8/+14
- Allow multiple levels of controller directories (supersedes PRs #390, #2439) - Add support for per-directory 'defaul_controller' and '404_override' (resolves issue #2611; supersedes PR #939) - Fixed a bug where default_controller was called instead of triggering 404 if the current route is inside a directory - Removed a few calls from CI_Router to CI_URI that made a necessity for otherwise internal CI_URI methods to be public: - Removed CI_URI::_fetch_uri_string() and moved its logic into CI_URI::__construct() - Removed CI_URI::_remove_url_suffix, CI_URI::_explode_segments() and moved their logic into CI_URI::_set_uri_string() - Removed CI_URI::_reindex_segments() altogether ( doesn't need further manipulation, while is public anyway and can be properly (and more effectively) replaced on the spot)
2014-01-15Fix #2799 by adding conditional PCRE UTF-8 support to CI_URI::filter_uri()Andrey Andreev1-1/+2
Also did a tiny micro-optimization in the Utf8 class.
2014-01-15Merge changes from developAndrey Andreev1-4/+9
2014-01-15Fix #2822: Incorrect usage of fwrite()Andrey Andreev1-0/+1
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.