Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
2
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Rock Zhang
2016-04-25 22:48:43 +0800
Commit
f7d63d906448f4d0359de9ead36f1d7c724d6be3
1 parent
e7bde876
屏蔽直接访问银联支付回调页面会出现报错的bug
Code Review By Rock Zhang
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
library/WebPlugin/Pay/Unionpayweb/Service.php
library/WebPlugin/Pay/Unionpayweb/Service.php
View file @
f7d63d9
...
...
@@ -40,7 +40,7 @@ class Service extends PayAbstract
$verify
=
false
;
$responseData
=
new
Rspparams
();
if
(
$package
[
'respCode'
]
!==
'00'
)
{
if
(
!
isset
(
$package
[
'respCode'
])
||
$package
[
'respCode'
]
!==
'00'
)
{
$this
->
log
->
LogInfo
(
'支付返回码有误'
);
$responseData
->
payResult
=
-
1
;
return
$responseData
;
...
...
Please
register
or
login
to post a comment