Toggle navigation
Toggle navigation
This project
Loading...
Sign in
chenchao
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to dashboard
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
毕凯
9 years ago
Commit
8547053d449e1562b07c0f8f8483b2e05b38b27d
2 parents
c155b0bf
b220ee37
Merge branch 'develop' of
http://git.dev.yoho.cn/web/yohobuy
into develop
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
yohobuy/m.yohobuy.com/application/modules/Passport/controllers/Bind.php
yohobuy/m.yohobuy.com/application/modules/Passport/controllers/Bind.php
View file @
8547053
...
...
@@ -225,7 +225,8 @@ class BindController extends AbstractAction
$areaCode
=
$this
->
post
(
'areaCode'
,
'86'
);
$sourceType
=
$this
->
post
(
'sourceType'
);
// $nickname = $this->post('nickname');//nickname不同步信息
$password
=
!
empty
(
$this
->
post
(
'password'
))
?
$this
->
post
(
'password'
)
:
''
;
$password
=
$this
->
post
(
'password'
);
$password
=
empty
(
$password
)
?
''
:
$password
;
if
(
!
is_numeric
(
$phoneNum
)
||
!
$openId
||
!
$sourceType
||
!
$areaCode
)
{
break
;
...
...
Please
register
or
login
to post a comment