In WHO.pm line 89 is missing a double-quotes.
[86] # loop through the users and print out the
name/who field
[87] my $userlist = $uWho->user_data;
[88] foreach my $user (@$userlist) {
[89] print "$user->{'name and title'};
[90] }
The line should probably read:
print "$user->{'name and title'}\n";