Skip to content

Commit

Permalink
Bugfix alipay
Browse files Browse the repository at this point in the history
method getSignContentUrlencode does not exist!
  • Loading branch information
mhcwebdesign committed Jan 11, 2024
1 parent d18413b commit d6ea3d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion upload/catalog/model/extension/payment/alipay.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ public function pageExecute($request, $httpmethod = "POST") {
$totalParams["sign"] = $this->generateSign($totalParams, $this->signtype);

if ("GET" == strtoupper($httpmethod)) {
$preString=$this->getSignContentUrlencode($totalParams);
// $preString=$this->getSignContentUrlencode($totalParams);
$preString=$this->getSignContent(urlencode($totalParams));
$requestUrl = $this->gateway_url."?".$preString;

return $requestUrl;
Expand Down

0 comments on commit d6ea3d2

Please sign in to comment.