* Shut up a harmless warning about an uninitialised variable.
This commit is contained in:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user