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
ad978eaa46d9c74dced900ed176cf6eb7988a8f9
1 parent
54d7233f
修复个人中心首页报错的bug
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
library/Plugin/DataProcess/FloorProcess.php
yohobuy/m.yohobuy.com/application/controllers/Home.php
library/Plugin/DataProcess/FloorProcess.php
View file @
ad978ea
...
...
@@ -37,7 +37,7 @@ class FloorProcess
if
(
empty
(
$v
))
{
continue
;
}
$fun
=
$v
[
'template_name'
];
if
(
empty
(
$v
[
'data'
])
||
!
is_callable
(
"self::
$fun
"
))
{
continue
;
...
...
yohobuy/m.yohobuy.com/application/controllers/Home.php
View file @
ad978ea
...
...
@@ -51,8 +51,9 @@ class HomeController extends AbstractAction
$uid
=
$this
->
getUid
(
true
);
if
(
$uid
)
{
$data
[
'isLogin'
]
=
true
;
$udid
=
$this
->
getUdid
();
$data
+=
UserModel
::
getUserProfileData
(
$uid
);
$data
+=
UserModel
::
getInfoNumData
(
$uid
);
$data
+=
UserModel
::
getInfoNumData
(
$uid
,
$udid
);
}
$this
->
_view
->
display
(
'index'
,
$data
);
...
...
Please
register
or
login
to post a comment