From d5a2d3dd31fea13b00e8960c789347acb9bbbe22 Mon Sep 17 00:00:00 2001 From: Guy Sartorelli Date: Mon, 8 Jan 2024 11:20:53 +1300 Subject: [PATCH] DOC Document new redirector 404 in changelog --- en/04_Changelogs/5.2.0.md | 1 + 1 file changed, 1 insertion(+) diff --git a/en/04_Changelogs/5.2.0.md b/en/04_Changelogs/5.2.0.md index 2b606fd91..1eee707e6 100644 --- a/en/04_Changelogs/5.2.0.md +++ b/en/04_Changelogs/5.2.0.md @@ -196,6 +196,7 @@ This will now fail by throwing an exception, which means your form won't render - A new [`SiteTree.hide_pagetypes`](api:SilverStripe\CMS\Model\SiteTree->hide_pagetypes) configuration property has been added. Unlike [`SiteTree.hide_ancestor`](api:SilverStripe\CMS\Model\SiteTree->hide_ancestor) (which has [now been deprecated](#api-silverstripe-cms)), this is an array. This allows you to define all page types that should be hidden in a single configuration property in your YAML configuration. - You can now upload [Braille ASCII file format](https://en.wikipedia.org/wiki/Braille_ASCII) (`.brf`) files to the CMS without needing to modify the [allowed file types](/developer_guides/files/allowed_file_types/). +- Redirector pages with a link to a missing or unpublished page/file will now return a 404 response. You can revert to the previous behaviour by setting the [`RedirectorPageController.missing_redirect_is_404`](api:SilverStripe\CMS\Model\RedirectorPageController->missing_redirect_is_404) configuration property to `false`. ## API changes