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
周少峰
9 years ago
Commit
e0cf72c399a7476f211dcf26327e42e9e1f4635a
1 parent
a4d90674
change add brand search param
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
yohobuy/m.yohobuy.com/application/modules/Category/controllers/Brand.php
yohobuy/m.yohobuy.com/application/modules/Category/controllers/Brand.php
View file @
e0cf72c
...
...
@@ -82,13 +82,14 @@ class BrandController extends AbstractAction
$result
=
array
();
$uid
=
$this
->
getUid
();
$brandName
=
$this
->
get
(
'brandName'
);
$brandDomain
=
$this
->
get
(
'brandDomain'
);
$brandId
=
$this
->
get
(
'brandId'
);
// $brandDomain = $this->get('brandDomain');
// $brandId = $this->get('brandId');
do
{
if
(
empty
(
$uid
)
||
empty
(
$brandName
))
{
break
;
}
$records
=
time
()
.
'_'
.
$brandName
.
'_'
.
$brandDomain
.
'_'
.
$brandId
;
// $records = time().'_'.$brandName.'_'.$brandDomain.'_'.$brandId;
$records
=
time
()
.
'_'
.
$brandName
;
$result
=
BrandData
::
branchSearchHistory
(
$uid
,
$records
);
}
while
(
false
);
...
...
Please
register
or
login
to post a comment