- or download this
sub check_id {
my ( $id )= @_;
...
}
return $res;
}
- or download this
$obj->load_via_id() ;
die "invalid user" unless $obj->activated_account ;
- or download this
if ( !$obj->activated_account ) {
$suppres_warning++;
die "invalid account";
}