From 30e2eafa86c4c7b6b39cea3e7089a90df9f603fb Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Tue, 12 Jun 2018 16:45:46 +0300 Subject: [ci skip] 3.1.9 release --- user_guide_src/source/installation/upgrade_313.rst | 46 ---------------------- 1 file changed, 46 deletions(-) delete mode 100644 user_guide_src/source/installation/upgrade_313.rst (limited to 'user_guide_src/source/installation/upgrade_313.rst') diff --git a/user_guide_src/source/installation/upgrade_313.rst b/user_guide_src/source/installation/upgrade_313.rst deleted file mode 100644 index 13af775a1..000000000 --- a/user_guide_src/source/installation/upgrade_313.rst +++ /dev/null @@ -1,46 +0,0 @@ -############################# -Upgrading from 3.1.2 to 3.1.3 -############################# - -Before performing an update you should take your site offline by -replacing the index.php file with a static one. - -Step 1: Update your CodeIgniter files -===================================== - -Replace all files and directories in your *system/* directory. - -.. note:: If you have any custom developed files in these directories, - please make copies of them first. - -Step 2: Remove usage of nice_date() helper (deprecation) -======================================================== - -The :doc:`Date Helper <../helpers/date_helper>` function ``nice_date()`` is -no longer useful since the introduction of PHP's `DateTime classes -`_ - -You can replace it with the following: -:: - - DateTime::createFromFormat($input_format, $input_date)->format($desired_output_format); - -Thus, ``nice_date()`` is now deprecated and scheduled for removal in -CodeIgniter 3.2+. - -.. note:: The function is still available, but you're strongly encouraged - to remove its usage sooner rather than later. - -Step 3: Remove usage of $config['standardize_newlines'] -======================================================= - -The :doc:`Input Library <../libraries/input>` would optionally replace -occurrences of `\r\n`, `\r`, `\n` in input data with whatever the ``PHP_EOL`` -value is on your system - if you've set ``$config['standardize_newlines']`` -to ``TRUE`` in your *application/config/config.php*. - -This functionality is now deprecated and scheduled for removal in -CodeIgniter 3.2.+. - -.. note:: The functionality is still available, but you're strongly - encouraged to remove its usage sooner rather than later. -- cgit v1.2.3-24-g4f1b