Skip to content

Commit

Permalink
Merge pull request #1699 from jim-parry/hotfix/alpha.5.1
Browse files Browse the repository at this point in the history
Fix install link in user guide
  • Loading branch information
jim-parry authored Feb 1, 2019
2 parents bfee807 + 0c12dc7 commit f4932c0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions user_guide_src/source/changelogs/v4.0.0-alpha.5.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/installation/installing_manual.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ for `CodeIgniter 3 <https://www.codeigniter.com/user_guide/installation/index.ht
Installation
============================================================

Download the `latest version <https://github.com/CodeIgniter4/codeigniter4/releases/latest>`_,
Download the `latest version <https://github.com/CodeIgniter4/framework/releases/latest>`_,
and extract it to become your project root.

Setup
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/libraries/sessions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down
3 changes: 1 addition & 2 deletions user_guide_src/source/libraries/validation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
***************

Expand Down

0 comments on commit f4932c0

Please sign in to comment.