Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
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
郝肖肖
8 years ago
Commit
a4bb48d3c9af23c9414932fe14707a90228d1060
1 parent
852a5c57
setcookie改成session
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
yohobuy/m.yohobuy.com/application/modules/Cart/controllers/Index.php
yohobuy/m.yohobuy.com/application/modules/Cart/controllers/Index.php
View file @
a4bb48d
...
...
@@ -570,11 +570,11 @@ class IndexController extends AbstractAction
$moreUrl
=
$this
->
server
(
'HTTP_REFERER'
,
'/cart/index/orderEnsure'
);
//取跳过来的url
//购物车订单进来,秒杀进来
if
(
strrpos
(
$moreUrl
,
'/cart/index/orderEnsure'
)
!==
false
||
strrpos
(
$moreUrl
,
'/cart/seckill'
)
!==
false
)
{
$this
->
set
Cookie
(
'addressMore'
,
$moreUrl
);
$this
->
set
Session
(
'addressMore'
,
$moreUrl
);
$_COOKIE
[
'addressMore'
]
=
$moreUrl
;
//第一次设置无效
}
$moreUrl
=
$this
->
get
Cookie
(
'addressMore'
,
'/cart/index/orderEnsure'
);
$moreUrl
=
$this
->
get
Session
(
'addressMore'
,
'/cart/index/orderEnsure'
);
$this
->
setNavHeader
(
'选择地址'
,
$moreUrl
,
false
);
$this
->
_view
->
display
(
'select-address'
,
array
(
...
...
Please
register
or
login
to post a comment