Skip to content

Commit b0a20a4

Browse files
authored
Resolved issue #10
Sisow now doesn't return an invalid sha1 warning anymore.
1 parent adbe7e9 commit b0a20a4

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
@@ -12,7 +12,8 @@ class CompletePurchaseRequest extends PurchaseRequest
1212
protected function generateSignature()
1313
{
1414
return sha1(
15-
$this->getTransactionReference() . $this->getMerchantId() . $this->getMerchantKey()
15+
$this->getTransactionReference() . $this->getShopId() .
16+
$this->getMerchantId() . $this->getMerchantKey()
1617
);
1718
}
1819

0 commit comments

Comments
 (0)