summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/changelog.rst
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-02-19 22:49:31 +0100
committerAndrey Andreev <narf@devilix.net>2014-02-19 22:49:31 +0100
commit02545895c1c6551be3b167bcada171fe9423d443 (patch)
tree5b20681d01f237602d45f93d06ec59c772f19569 /user_guide_src/source/changelog.rst
parente75255684d55fa075dcc7c03274c41201825d430 (diff)
Add compatibility layer for array_column(), array_replace(), array_replace_recursive()
Diffstat (limited to 'user_guide_src/source/changelog.rst')
-rw-r--r--user_guide_src/source/changelog.rst8
1 files changed, 7 insertions, 1 deletions
diff --git a/user_guide_src/source/changelog.rst b/user_guide_src/source/changelog.rst
index 9ec4d0d77..ccbb950af 100644
--- a/user_guide_src/source/changelog.rst
+++ b/user_guide_src/source/changelog.rst
@@ -508,7 +508,13 @@ Release Date: Not Released
- Changed method ``clean_string()`` to utilize ``mb_convert_encoding()`` if it is available but ``iconv()`` is not.
- Renamed method ``_is_ascii()`` to ``is_ascii()`` and made it public.
- - Added `compatibility layers <general/compatibility_functions>` for PHP's `mbstring <http://php.net/mbstring>`_ (limited support), `hash <http://php.net/hash>`_ and `password <http://php.net/password>`_ extensions.
+ - Added `compatibility layers <general/compatibility_functions>` for:
+
+ - `Multibyte String <http://php.net/mbstring>`_ (limited support).
+ - `Hash <http://php.net/hash>`_ (just ``hash_pbkdf2()``).
+ - `Password Hashing <http://php.net/password>`_.
+ - `Array Functions <http://php.net/book.array>`_ (``array_column()``, ``array_replace()``, ``array_replace_recursive()``).
+
- Removed ``CI_CORE`` boolean constant from *CodeIgniter.php* (no longer Reactor and Core versions).
- Log Library will now try to create the **log_path** directory if it doesn't exist.
- Added support for HTTP-Only cookies with new config option *cookie_httponly* (default FALSE).