* Shut up a harmless warning about an uninitialised variable.

This commit is contained in:
Eelco Dolstra 2010-02-09 14:10:16 +00:00
parent 9409d20f39
commit 6c35801173

View file

@ -49,7 +49,7 @@ sub errors : Chained('get_builds') PathPart Args(0) {
sub all : Chained('get_builds') PathPart {
my ($self, $c) = @_;
my $page = int($c->req->param('page')) || 1;
my $page = int($c->req->param('page') || "1") || 1;
my $resultsPerPage = 20;