Skip to content

Commit

Permalink
Fixes issue #186
Browse files Browse the repository at this point in the history
  • Loading branch information
deano92964 committed Oct 29, 2021
1 parent a0b1e87 commit 5a499a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -55,7 +55,8 @@ public function getCode()
'title' => getParam('site_title'),
'logout' => '<a href="logout.php?action=member_logout">' . _t('_Log Out') . '</a>',
'thumb' => $GLOBALS['oFunctions']->getMemberThumbnail($iMemberID),
'nickname' => getNickName(),
'display_name' => getNickName(),
'profile_link' => getProfileLink($iMemberID),
'email' => $GLOBALS['MySQL']->getOne("SELECT `Email` FROM `Profiles` WHERE `ID` = '$iMemberID' LIMIT 1"),
'content' => $sItems,
));
Expand Down
2 changes: 1 addition & 1 deletion templates/tmpl_evolution_light/service_menu.html
Expand Up @@ -13,7 +13,7 @@
<div style="float: left;">
__thumb__</div>
<div style="padding: 8px 0px 4px 80px;">
<a href="__nickname__">__nickname__</a></div>
<a href="__profile_link__">__display_name__</a></div>
<div style="padding: 4px 0px 4px 80px;">
__email__</div>
</div>
Expand Down

0 comments on commit 5a499a6

Please sign in to comment.