Skip to content

Commit f41722c

Browse files
committed
There is no $this->redirectUrl, should be $this->getRedirectUrl()
1 parent b1696f5 commit f41722c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Omnipay/Common/Message/AbstractResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public function redirect()
100100
</form>
101101
</body>
102102
</html>';
103-
$output = sprintf($output, htmlspecialchars($this->redirectUrl, ENT_QUOTES, 'UTF-8'), $hiddenFields);
103+
$output = sprintf($output, htmlspecialchars($this->getRedirectUrl(), ENT_QUOTES, 'UTF-8'), $hiddenFields);
104104

105105
HttpResponse::create($output)->send();
106106
exit;

0 commit comments

Comments
 (0)