2010/4/20 Jay Hannah <jhannah@omnihotels.com>--laugh... caught myself changing code to this
my $response;
unless ( $response = $self->send() ) {
return 0;
}
return $response;
this is much better:
return $self->send();
For some extra GOLF points you could
{
...
$self->send();
}
Ted Katseres
||=O=||
_______________________________________________
Omaha-pm mailing list
Omaha-pm@pm.org
http://mail.pm.org/mailman/listinfo/omaha-pm