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-14 17:33:53 +0800
Commit
46a6100ef97822aaa120f065850e1d876b2faec0
1 parent
fbc88aca
修复品牌列表页收藏状态错误的bug(uid为空时也传递到接口导致,改为不传uid参数)
Code Review By Rock Zhang
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
library/LibModels/Wap/Category/BrandData.php
library/LibModels/Wap/Category/BrandData.php
View file @
46a6100
...
...
@@ -96,7 +96,11 @@ class BrandData
// 构建必传参数
$param
=
Yohobuy
::
param
();
$param
[
'brand_id'
]
=
$brandId
;
$param
[
'uid'
]
=
$uid
;
if
(
!
empty
(
$uid
))
{
$param
[
'uid'
]
=
$uid
;
}
$param
[
'method'
]
=
'app.brand.getBrandIntro'
;
$param
[
'client_secret'
]
=
Sign
::
getSign
(
$param
);
...
...
Please
register
or
login
to post a comment