=cut
=head3 author
$newsitem->author;
Return the Koha::Patron object for the patron who authored this news item
sub author {
my ( $self ) = @_;
return Koha::Patron->_new_from_dbic($self->_result->borrowernumber);
-