From fdc805921994727891da8076087392639914676b Mon Sep 17 00:00:00 2001 From: kenjis Date: Sun, 15 Jan 2023 11:45:04 +0900 Subject: [PATCH 1/2] docs: add missing Content Changes in View Files --- user_guide_src/source/installation/upgrade_430.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/user_guide_src/source/installation/upgrade_430.rst b/user_guide_src/source/installation/upgrade_430.rst index fb93b74c782b..396b45b25f60 100644 --- a/user_guide_src/source/installation/upgrade_430.rst +++ b/user_guide_src/source/installation/upgrade_430.rst @@ -325,6 +325,17 @@ Config - app/Config/Validation.php - The default Validation Rules have been changed to Strict Rules for better security. See :ref:`validation-traditional-and-strict-rules`. +View Files +---------- + +The following view files have been changed to HTML5 compatible tags. +Also, error messages are now defined in the **Errors** language file. + +- app/Views/errors/html/error_404.php +- app/Views/errors/html/error_exception.php +- app/Views/errors/html/production.php +- app/Views/welcome_message.php + All Changes =========== From b96fcf10711f070dc2c033b4f91c5894705bae62 Mon Sep 17 00:00:00 2001 From: kenjis Date: Sun, 15 Jan 2023 11:47:31 +0900 Subject: [PATCH 2/2] docs: add about missing Errors.php lang file --- user_guide_src/source/changelogs/v4.3.0.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/user_guide_src/source/changelogs/v4.3.0.rst b/user_guide_src/source/changelogs/v4.3.0.rst index ed6047cd320e..5911f1686568 100644 --- a/user_guide_src/source/changelogs/v4.3.0.rst +++ b/user_guide_src/source/changelogs/v4.3.0.rst @@ -335,6 +335,7 @@ Message Changes - Updated English language strings to be more consistent. - Added ``CLI.generator.className.cell`` and ``CLI.generator.viewName.cell``. +- Added **en/Errors.php** file. Changes *******