<%init> my %opt = @_; unless ( $opt{'otakers'} ) { my $sth = dbh->prepare("SELECT username FROM access_user". " WHERE disabled = '' or disabled IS NULL") or die dbh->errstr; $sth->execute or die $sth->errstr; $opt{'otakers'} = [ map { $_->[0] } @{$sth->fetchall_arrayref} ]; }