not a malfunction, but many needless db queries during poll viewing.
in Stories.pm are a few instances of :
my $stat = $sth->fetchrow();
i reckon it should be :
my $stat = $sth->fetchrow();
## Even if sid doesn't exist in stories table, we want to cache a value in $S->{STORIES}
$stat ||= 0;
-day