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
9 years ago
Commit
44fa08731fe8ea0ba81a2ed385626e56b5099512
1 parent
c8a8a6f7
修复new页面筛选数据错误的bug,传递p_d参数导致
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
yohobuy/m.yohobuy.com/application/modules/Product/controllers/Newsale.php
yohobuy/m.yohobuy.com/application/modules/Product/controllers/Newsale.php
View file @
44fa087
...
...
@@ -177,7 +177,10 @@ class NewsaleController extends AbstractAction
$color
=
$this
->
get
(
'color'
,
null
);
$size
=
$this
->
get
(
'size'
,
null
);
$price
=
$this
->
get
(
'price'
,
null
);
$p_d
=
'0.1,0.3'
;
$p_d
=
$this
->
get
(
'discount'
,
null
);
if
(
$p_d
!==
null
)
{
$p_d
=
'0.1,0.3'
;
}
$dayLimit
=
$this
->
get
(
'dayLimit'
,
null
);
$limit
=
$this
->
get
(
'limit'
,
60
);
$page
=
$this
->
get
(
'page'
,
1
);
...
...
Please
register
or
login
to post a comment