From e63774061d9a4a9116f4bd00c105d12445d1aed6 Mon Sep 17 00:00:00 2001 From: Steve Boyd Date: Tue, 18 Oct 2022 16:35:11 +1300 Subject: [PATCH] FIX Call parent::contruct() --- code/Controllers/CMSPageHistoryController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/code/Controllers/CMSPageHistoryController.php b/code/Controllers/CMSPageHistoryController.php index 48a8ae35..7ffcc88d 100644 --- a/code/Controllers/CMSPageHistoryController.php +++ b/code/Controllers/CMSPageHistoryController.php @@ -62,6 +62,7 @@ class CMSPageHistoryController extends CMSMain public function __construct() { + parent::__construct(); Deprecation::notice('4.3.0', 'Use silverstripe/versioned-admin instead', Deprecation::SCOPE_CLASS); }