Subject: | Debug message in method action_args leads to 500 internal server error |
The file ActionDispatch.pm contains obviously a debug message in line 147:
print @args, Dumper($self), "\n\n";
Removing this line solves the problem.
A patch file is attached.
Thank you for your help and your great module. Happy new year.
Subject: | ActionDispatch.pm.diff |
--- ActionDispatch.pm.orig 2007-12-07 16:46:23.318950000 +0100
+++ ActionDispatch.pm 2007-12-07 16:49:19.688356000 +0100
@@ -147,8 +147,6 @@
return;
}
- print @args, Dumper($self), "\n\n";
-
return undef unless defined $self->{__CAP_ACTION_ARGS};
return wantarray ? @{$self->{__CAP_ACTION_ARGS}} : shift @{$self->{__CAP_ACTION_ARGS}};
}