diff --git a/user_guide_src/source/changelogs/v4.0.0-alpha.5.rst b/user_guide_src/source/changelogs/v4.0.0-alpha.5.rst index 82ac499e30ad..ecdd266ef06e 100644 --- a/user_guide_src/source/changelogs/v4.0.0-alpha.5.rst +++ b/user_guide_src/source/changelogs/v4.0.0-alpha.5.rst @@ -7,6 +7,7 @@ Release Date: Jan 30, 2019 Highlights: +- added $maxQueries setting to app/Config/Toolbar.php - updated PHP dependency to 7.2 - new feature branches have been created for the email and queue modules, so they don't impact the release of 4.0.0 - dropped several language messages that were unused (eg Migrations.missingTable) and added some new (eg Migrations.invalidType) @@ -30,6 +31,7 @@ The list of changed files follows, with PR numbers shown. - Filters #1686 - Modules #1665 - Services #614216 + - Toolbar - contributing/ - guidelines.rst #1671, #1673 diff --git a/user_guide_src/source/installation/installing_manual.rst b/user_guide_src/source/installation/installing_manual.rst index c3de695f48d8..5391922f2245 100644 --- a/user_guide_src/source/installation/installing_manual.rst +++ b/user_guide_src/source/installation/installing_manual.rst @@ -15,7 +15,7 @@ for `CodeIgniter 3 `_, +Download the `latest version `_, and extract it to become your project root. Setup diff --git a/user_guide_src/source/libraries/sessions.rst b/user_guide_src/source/libraries/sessions.rst index 29224830b3a1..6bd8a7a8b0dc 100644 --- a/user_guide_src/source/libraries/sessions.rst +++ b/user_guide_src/source/libraries/sessions.rst @@ -489,7 +489,7 @@ engines, that you can use: - CodeIgniter\Session\Handlers\MemcachedHandler - CodeIgniter\Session\Handlers\RedisHandler -By default, the `FileHandler Driver`_ will be used when a session is initialized, +By default, the ``FileHandler`` Driver will be used when a session is initialized, because it is the most safe choice and is expected to work everywhere (virtually every environment has a file system). diff --git a/user_guide_src/source/libraries/validation.rst b/user_guide_src/source/libraries/validation.rst index b8444aed9b4f..fe3b05ac32d9 100644 --- a/user_guide_src/source/libraries/validation.rst +++ b/user_guide_src/source/libraries/validation.rst @@ -291,7 +291,7 @@ Validate one value against a rule:: $validation->check($value, 'required'); Saving Sets of Validation Rules to the Config File -================================================ +======================================================= A nice feature of the Validation class is that it permits you to store all your validation rules for your entire application in a config file. You organize @@ -630,7 +630,6 @@ for rules like ``require_with`` that needs to check the value of another submitt Custom errors can be returned as the fourth parameter, just as described above. -*************** Available Rules ***************