Skip to content

Commit

Permalink
Use fullname() function for name
Browse files Browse the repository at this point in the history
  • Loading branch information
moodler committed Nov 28, 2003
1 parent d7e1bae commit 40387b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/ipatlas/plot.php
Expand Up @@ -5,7 +5,8 @@

if (isset($user)) {
$user = get_record("user", "id", $user);
$username = "<B>$user->firstname $user->lastname</B> [$user->city, $user->country] : ";
$fullname = fullname($user, true);
$username = "<b>$fullname</b> [$user->city, $user->country] : ";
} else {
$username = "";
}
Expand Down

0 comments on commit 40387b0

Please sign in to comment.