Skip to content

Commit

Permalink
[BUGFIX] Use correct returnUrl for AddWizard caller
Browse files Browse the repository at this point in the history
The wrong property has been used to construct the return
URL for the redirect. This has been corrected.

Change-Id: I0d2011a153a34e6c272c69c5a88d66eb498b0707
Resolves: #84336
Relates: #84195
Releases: master
Reviewed-on: https://review.typo3.org/56213
Reviewed-by: Łukasz Uznański <l.uznanski@macopedia.pl>
Tested-by: Łukasz Uznański <l.uznanski@macopedia.pl>
Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch>
Tested-by: Christian Kuhn <lolli@schwarzbu.ch>
Tested-by: TYPO3com <no-reply@typo3.com>
  • Loading branch information
maddy2101 authored and lolli42 committed Mar 16, 2018
1 parent 7e1f77e commit 011c292
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2311,7 +2311,7 @@ public function closeDocument($mode = self::DOCUMENT_CLOSE_MODE_DEFAULT, ServerR
// @deprecated fall back if method has been called from outside. This if can be removed in v10
HttpUtility::redirect($this->retUrl);
}
return new RedirectResponse($this->returnUrl, 303);
return new RedirectResponse($this->retUrl, 303);
}
if ($this->retUrl === '') {
return null;
Expand Down

0 comments on commit 011c292

Please sign in to comment.