Skip to content

Commit f97c3fd

Browse files
committed
Fix warning that occurs on perl 5.36+ for using @_ in function signature.
1 parent c16e75e commit f97c3fd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/WeBWorK/Controller.pm

+3-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ use WeBWorK::Localize;
3434
# FIXME: This override should be dropped and the Mojolicious::Controller param and every_param methods used directly.
3535
# Mojolicious already keeps a cache of parameter values and also allows setting of parameters. So everything done here
3636
# is redundant.
37-
sub param ($c, $name = undef, $val = undef) {
37+
sub param ($c, @opts) {
38+
my ($name, $val) = @opts;
3839
if (!defined $c->{paramcache}) {
3940
for my $name (@{ $c->req->params->names }) {
4041
$c->{paramcache}{$name} = $c->req->every_param($name);
@@ -43,7 +44,7 @@ sub param ($c, $name = undef, $val = undef) {
4344

4445
return keys %{ $c->{paramcache} } unless $name;
4546

46-
if (@_ == 3) {
47+
if (@opts == 2) {
4748
if (!defined $val) {
4849
$c->{paramcache}{$name} = [];
4950
} elsif (ref $val eq 'ARRAY') {

0 commit comments

Comments
 (0)