We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
protected function generateSignature() { return sha1( $this->getTransactionReference() . $this->getMerchantId() . $this->getMerchantKey() ); }
should become
protected function generateSignature() { return sha1( $this->getTransactionReference() . **$this->getShopId()** . $this->getMerchantId() . $this->getMerchantKey() ); }
The text was updated successfully, but these errors were encountered:
Which version are you using? This commit should have added it already: 8f7c0b8
Sorry, something went wrong.
Ah sorry, in the Complete one. Yes should probably be added there also, can you submit a PR?
Resolved issue #10
b0a20a4
Sisow now doesn't return an invalid sha1 warning anymore.
Fixed with version v2.0.4, thanks for noticing @Renegade2u!
198080f
No branches or pull requests
should become
The text was updated successfully, but these errors were encountered: