Fix up params count

This commit is contained in:
2025-10-06 20:06:18 +01:00
parent ecb846fc6c
commit 8c285179fd

View File

@@ -136,7 +136,7 @@ sub do_update {
my $params = ${ $c->req->params->to_hash };
# Get number of POST parameters
my $num_params = keys scaler %$params;
my $num_params = keys %params;
#Params are available in the hash "params" - copy to the prefix_data hash
while (my ($key, $value) = each %{$c->req->params->to_hash}) {