Toggle navigation
Toggle navigation
This project
Loading...
Sign in
wangshusheng
/
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
Email Patches
Plain Diff
Browse Files
Authored by
Rock Zhang
2015-12-17 15:06:48 +0800
Commit
6aa037e9fb652cf58f63c9e93de40a14ffc4a027
1 parent
ddf0463b
修复购物车选择和全选按钮报错的bug(接收参数名错误导致)
Code Review By Rock Zhang
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
yohobuy/m.yohobuy.com/application/modules/Cart/controllers/Index.php
yohobuy/m.yohobuy.com/application/modules/Cart/controllers/Index.php
View file @
6aa037e
...
...
@@ -78,7 +78,7 @@ class IndexController extends AbstractAction
$result
=
array
();
if
(
$this
->
isAjax
())
{
$productId
=
$this
->
post
(
'
id
'
,
0
);
$productId
=
$this
->
post
(
'
skuList
'
,
0
);
$uid
=
$this
->
getUid
(
true
);
$shoppingKey
=
Helpers
::
getShoppingKeyByCookie
();
$result
=
CartModel
::
selectGoods
(
$uid
,
$productId
,
$shoppingKey
);
...
...
Please
register
or
login
to post a comment