Shut up some Perl 5.20 warnings

This commit is contained in:
Eelco Dolstra
2014-11-25 00:27:52 +01:00
parent 5e265e6739
commit 9e00d98d34
2 changed files with 3 additions and 3 deletions

View File

@ -306,7 +306,7 @@ sub dashboard :Chained('user') :Args(0) {
my @builds = $j->job->builds->search(
{ },
{ rows => 20, order_by => "id desc" });
push $c->stash->{starredJobs}, { job => $j->job, builds => [@builds] };
push @{$c->stash->{starredJobs}}, { job => $j->job, builds => [@builds] };
}
}