Subject: | doc bug on $page->skipped |
Re: http://search.cpan.org/dist/Data-Page/lib/Data/Page.pm#skipped
we see:
$sth = $dbh->prepare(
q{SELECT * FROM table ORDER BY rec_date LIMIT ?, ?}
);
$sth->execute($date, $page->skipped, $page->entries_per_page);
but there are 2 placeholders and 3 bind values...
$date should be removed from the list of arguments.