Here it is, for 4.0.11
authbox.tpl
Code:
{$login_firstname}{$login_lastname}{$lng.txt_logged_in}
you can format this as you want, you might put a
after the {$login_lastname} to get the text "is logged in" into the next line...
in check_useraccount.php
add line
Code:
$smarty->assign("login_lastname",$user_account["lastname"]);
below the line for the first name
Code:
$smarty->assign("login_firstname",$user_account["firstname"]);
Cheers, Andy