Skip to content

Commit 198080f

Browse files
robinvalkbarryvdh
authored andcommitted
Resolved issue #10
Sisow now doesn't return an invalid sha1 warning anymore.
1 parent dc65115 commit 198080f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Message/CompletePurchaseRequest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ class CompletePurchaseRequest extends PurchaseRequest
1414
protected function generateSignature()
1515
{
1616
return sha1(
17-
$this->getTransactionReference() . $this->getMerchantId() . $this->getMerchantKey()
17+
$this->getTransactionReference() . $this->getShopId() .
18+
$this->getMerchantId() . $this->getMerchantKey()
1819
);
1920
}
2021

0 commit comments

Comments
 (0)