Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOOD
·
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
Plain Diff
Browse Files
Authored by
2586703@qq.com
2015-06-25 11:15:20 +0800
Commit
a6b0a427a09f7df81fd74ab1b9dd3921b27ca637
2 parents
248d821f
76ce0ed1
Merge branch 'develop' of
http://git.dev.yoho.cn/web/yohood
into develop
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
website/facade/News.class.php
website/facade/News.class.php
View file @
a6b0a42
...
...
@@ -270,7 +270,12 @@ class Facade_News
public
static
function
getSameNewsById
(
$id
,
$exceptTags
=
array
())
{
$ids
=
Facade_Brand
::
getSameNewsByNewsID
(
$id
);
return
self
::
service
()
->
getNewsByOrderId
(
$ids
,
$exceptTags
);
$news
=
array
();
if
(
!
empty
(
$ids
))
{
$news
=
self
::
service
()
->
getNewsByOrderId
(
$ids
,
$exceptTags
);
}
return
$news
;
}
/**
...
...
Please
register
or
login
to post a comment