FIX: typo at isFormResponse

This commit is contained in:
Tony Air 2023-10-24 23:44:40 +02:00
parent 2039a0b42a
commit 8b13df9397
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class ObjectGraphQlEx extends DataExtension
public function isFormResponse()
{
$curr = Controller::curr();
$req = $this->getRequest();
$req = $curr->getRequest();
return $req->requestVar('SecurityID') || $req->httpMethod() === 'POST';
}