Skip to content

Commit

Permalink
Fix call to get user id
Browse files Browse the repository at this point in the history
  • Loading branch information
carlbennett committed Jul 21, 2021
1 parent 37eb13d commit 2dfc29c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/templates/Packet/View.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if ($object)
if ($user)
{
$user_name = $user->getName();
$user_id = $user->getUserId();
$user_id = $user->getId();
$user_url = $user->getURI();
$user_avatar = $user->getAvatarURI(40);
}
Expand Down

0 comments on commit 2dfc29c

Please sign in to comment.