Skip to content

Commit

Permalink
checkout/success pagina hoeft niet over SSL conform OpenCart eigen im…
Browse files Browse the repository at this point in the history
…plementaties
  • Loading branch information
Willem Stuursma committed Mar 8, 2013
1 parent 91f57a6 commit 0299556
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion catalog/controller/payment/mollie_ideal.php
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ public function callback ()
*/
if (isset($payment['bank_status']) && $payment['bank_status'] == ModelPaymentMollieIdeal::BANK_STATUS_SUCCESS)
{
$this->redirect($this->url->link('checkout/success', '', 'SSL'));
$this->redirect($this->url->link('checkout/success'));
return;
}
else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function testCartClearedIfPaymentSuccessFull()

$this->url->expects($this->once())
->method('link')
->with('checkout/success', '', 'SSL')
->with('checkout/success')
->will($this->returnValue('http://opencart.office/index.php?route=checkout/success'));

$this->controller->expects($this->once())
Expand Down

0 comments on commit 0299556

Please sign in to comment.