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
4c51e21ec608651e2595a3cb21c370b2663ff959
1 parent
dfa1c603
修复男女首页热门品牌gender参数未添加问题,修改品类列表页一级品类为首字母大写,修复邮箱发送成功页返回地址错误bug
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
6 deletions
library/Plugin/DataProcess/FloorProcess.php
yohobuy/m.yohobuy.com/application/models/Category/Class.php
yohobuy/m.yohobuy.com/application/modules/Passport/controllers/Back.php
library/Plugin/DataProcess/FloorProcess.php
View file @
4c51e21
...
...
@@ -9,9 +9,6 @@ use Plugin\Helpers;
*/
class
FloorProcess
{
private
static
$guangUrl
=
'http://guang.m.yohobuy.com'
;
/**
* 频道参数
*
...
...
@@ -208,7 +205,7 @@ class FloorProcess
unset
(
$data
[
'title'
]);
foreach
(
$data
[
'list'
]
as
&
$one
)
{
if
(
isset
(
$one
[
'url'
]))
{
$one
[
'url'
]
=
Helpers
::
getFilterUrl
(
$one
[
'url'
]);
$one
[
'url'
]
=
Helpers
::
getFilterUrl
(
$one
[
'url'
])
.
'?gender='
.
self
::
$channel
[
$type
]
;
}
$one
[
'img'
]
=
Helpers
::
getImageUrl
(
$one
[
'src'
],
158
,
174
);
unset
(
$one
[
'src'
]);
...
...
yohobuy/m.yohobuy.com/application/models/Category/Class.php
View file @
4c51e21
...
...
@@ -46,7 +46,7 @@ class ClassModel
$oneClass
=
array
();
$item
=
array
();
foreach
(
$data
[
'data'
]
as
$k
=>
$v
)
{
$oneClass
=
array
(
'name'
=>
$k
,
'ca'
=>
array
());
$oneClass
=
array
(
'name'
=>
ucfirst
(
$k
)
,
'ca'
=>
array
());
foreach
(
$v
as
$val
)
{
$item
=
array
();
...
...
yohobuy/m.yohobuy.com/application/modules/Passport/controllers/Back.php
View file @
4c51e21
...
...
@@ -100,7 +100,7 @@ class BackController extends AbstractAction
$domain_name
=
'http://'
.
((
$domain
==
'gmail.com'
)
?
'mail.google.com'
:
'mail.'
.
$domain
);
$data
=
array
(
'backUrl'
=>
'emailback.html'
,
'backUrl'
=>
'
/
emailback.html'
,
'headerText'
=>
'找回密码'
,
'isPassportPage'
=>
true
,
'backEmailSuccess'
=>
true
,
...
...
Please
register
or
login
to post a comment