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
hf
9 years ago
Commit
115fe28ce93fbaee78d294a25f788c476a1ca480
1 parent
2082e0e8
code review by fei.hong: do merge yang.yang and shaofeng.zhou fixes bugs codes
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
yohobuy/www.yohobuy.com/application/models/Product/Brands.php
yohobuy/www.yohobuy.com/application/models/Product/Sale.php
yohobuy/www.yohobuy.com/public/index-dev.php
yohobuy/www.yohobuy.com/application/models/Product/Brands.php
View file @
115fe28
...
...
@@ -53,10 +53,9 @@ class BrandsModel
//获取静态内容
if
(
$options
[
'node'
])
{
$nodeContent
=
HelperSearch
::
getNodeContent
(
$options
[
'node'
]);
$result
[
'leftContent'
][][
'
picLink'
][
'list
'
]
=
$nodeContent
;
$result
[
'leftContent'
][][
'
cardHtml
'
]
=
$nodeContent
;
}
return
$result
;
}
...
...
yohobuy/www.yohobuy.com/application/models/Product/Sale.php
View file @
115fe28
...
...
@@ -72,7 +72,7 @@ class SaleModel
//获取广告位数据
if
(
isset
(
$special
[
'left_ad_code'
]))
{
$nodeContent
=
HelperSearch
::
getNodeContent
(
$special
[
'left_ad_code'
]);
$result
[
'leftContent'
][][
'
picLink'
][
'list
'
]
=
$nodeContent
;
$result
[
'leftContent'
][][
'
cardHtml
'
]
=
$nodeContent
;
}
...
...
yohobuy/www.yohobuy.com/public/index-dev.php
View file @
115fe28
...
...
@@ -4,7 +4,7 @@ define('SITE_MAIN', 'http://web.dev.yohobuy.com'); // 网站主域名
define
(
'OLD_MAIN'
,
'http://www.yohobuy.com'
);
// 网站旧域名
define
(
'COOKIE_DOMAIN'
,
'.yohobuy.com'
);
// COOKIE作用域
define
(
'SUB_DOMAIN'
,
'.yohobuy.com'
);
// 子域名后缀
define
(
'USE_CACHE'
,
tru
e
);
// 缓存的开关
define
(
'USE_CACHE'
,
fals
e
);
// 缓存的开关
define
(
'APPLICATION_PATH'
,
dirname
(
__DIR__
));
// 应用目录
define
(
'ROOT_PATH'
,
dirname
(
dirname
(
APPLICATION_PATH
)));
// 根目录
defined
(
'APPLICATION_ENV'
)
||
define
(
'APPLICATION_ENV'
,
'developer'
);
...
...
Please
register
or
login
to post a comment