diff --git a/code/Model/EditableCustomRule.php b/code/Model/EditableCustomRule.php index 08fa1b40..f4880232 100644 --- a/code/Model/EditableCustomRule.php +++ b/code/Model/EditableCustomRule.php @@ -119,7 +119,7 @@ protected function getCanCreateContext($args) } // Hack in currently edited page if context is missing if (Controller::has_curr() && Controller::curr() instanceof CMSMain) { - return Controller::curr()->currentPage(); + return Controller::curr()->currentRecord(); } // No page being edited diff --git a/code/Model/EditableFormField.php b/code/Model/EditableFormField.php index 231cd0fe..986787e6 100755 --- a/code/Model/EditableFormField.php +++ b/code/Model/EditableFormField.php @@ -509,7 +509,7 @@ public function canEdit($member = null) // This is to restore User Forms 2.x backwards compatibility. $controller = Controller::curr(); if ($controller && $controller instanceof CMSPageEditController) { - $parent = $controller->getRecord($controller->currentPageID()); + $parent = $controller->getRecord($controller->currentRecordID()); // Only allow this behaviour on pages using UserFormFieldEditorExtension, such // as UserDefinedForm page type. if ($parent && $parent->hasExtension(UserFormFieldEditorExtension::class)) { @@ -572,7 +572,7 @@ protected function getCanCreateContext($args) } // Hack in currently edited page if context is missing if (Controller::has_curr() && Controller::curr() instanceof CMSMain) { - return Controller::curr()->currentPage(); + return Controller::curr()->currentRecord(); } // No page being edited diff --git a/code/Model/Recipient/EmailRecipient.php b/code/Model/Recipient/EmailRecipient.php index aa53bbf3..7bcfef0c 100644 --- a/code/Model/Recipient/EmailRecipient.php +++ b/code/Model/Recipient/EmailRecipient.php @@ -228,7 +228,7 @@ protected function getFormParent() // LeftAndMain::sessionNamespace is protected. $sessionNamespace = $this->config()->get('session_namespace') ?: CMSMain::class; - $formID = Controller::curr()->getRequest()->getSession()->get($sessionNamespace . '.currentPage'); + $formID = Controller::curr()->getRequest()->getSession()->get($sessionNamespace . '.currentRecord'); if ($formID) { return UserDefinedForm::get()->byID($formID); } @@ -460,7 +460,7 @@ protected function getCanCreateContext($args) } // Hack in currently edited page if context is missing if (Controller::has_curr() && Controller::curr() instanceof CMSMain) { - return Controller::curr()->currentPage(); + return Controller::curr()->currentRecord(); } // No page being edited diff --git a/code/Model/Recipient/EmailRecipientCondition.php b/code/Model/Recipient/EmailRecipientCondition.php index 760baf45..48b882cb 100644 --- a/code/Model/Recipient/EmailRecipientCondition.php +++ b/code/Model/Recipient/EmailRecipientCondition.php @@ -143,7 +143,7 @@ protected function getCanCreateContext($args) } // Hack in currently edited page if context is missing if (Controller::has_curr() && Controller::curr() instanceof CMSMain) { - return Controller::curr()->currentPage(); + return Controller::curr()->currentRecord(); } // No page being edited