Skip to content

Commit

Permalink
Merge pull request #410 from Patta/bugfix/undefined-rid
Browse files Browse the repository at this point in the history
[BUGFIX] Avoid undefined array key "rid" warning in JumpurlController
  • Loading branch information
SSFGizmo authored Jun 8, 2023
2 parents 9ccca4b + facca8b commit 69d120c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Middleware/JumpurlController.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public function process(ServerRequestInterface $request, RequestHandlerInterface

if ($this->shouldProcess()) {
$mailId = (int)$this->request->getQueryParams()['mid'];
$submittedRecipient = (string)$this->request->getQueryParams()['rid'];
$submittedRecipient = isset($this->request->getQueryParams()['rid']) ? (string)$this->request->getQueryParams()['rid'] : '';
$submittedAuthCode = $this->request->getQueryParams()['aC'];
$jumpurl = $this->request->getQueryParams()['jumpurl'];

Expand Down

0 comments on commit 69d120c

Please sign in to comment.