Skip to content
This repository has been archived by the owner on Apr 29, 2021. It is now read-only.

Commit

Permalink
Update tce_page_header.php
Browse files Browse the repository at this point in the history
  • Loading branch information
mamans86 committed Aug 2, 2020
1 parent b744523 commit b47d5a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/code/tce_page_header.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@
echo '<div id="userInfoCont">'.K_NEWLINE;
echo '<div><span>'.$l['w_level'].'</span><span>'.$_SESSION['session_user_level'].'</span></div>'.K_NEWLINE;
echo '<div><span>'.$l['w_username'].'</span><span>'.$_SESSION['session_user_name'].'</span></div>'.K_NEWLINE;
echo '<div><span>'.$l['w_name'].'</span><span>'.$_SESSION['session_user_firstname'].'</span></div>'.K_NEWLINE;
echo '<div><span>'.$l['w_name'].'</span><span>'.F_getFirstName($_SESSION['session_user_firstname']).'</span></div>'.K_NEWLINE;
if($_SESSION['session_user_lastname']!=""){
echo '<div><span>'.$l['w_lastname'].'</span><span>'.$_SESSION['session_user_lastname'].'</span></div>'.K_NEWLINE;
echo '<div><span>'.$l['w_lastname'].'</span><span>'.F_getFirstName($_SESSION['session_user_lastname']).'</span></div>'.K_NEWLINE;
}
echo '<div class="logout"><span><a href="tce_logout.php" class="logoutbutton" title="'.$l['h_logout_link'].'" onclick="return confirm(\''.$l['w_logout'].'\')"><i class="fas fa-sign-out-alt"></i> '.$l['w_logout'].'</a></span></div>'.K_NEWLINE;
echo '</div>'.K_NEWLINE;
Expand Down

0 comments on commit b47d5a3

Please sign in to comment.