Skip Menu |

This queue is for tickets about the CGI-Application-Plugin-ActionDispatch CPAN distribution.

Report information
The Basics
Id: 32125
Status: resolved
Priority: 0/
Queue: CGI-Application-Plugin-ActionDispatch

People
Owner: Nobody in particular
Requestors: dietrich.streifert [...] googlemail.com
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.91
Fixed in: (no value)



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}}; }
From: dietrich.streifert [...] googlemail.com
On Mo. 07. Jan. 2008, 04:24:24, level420 wrote: Show quoted text
> 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.
Any news on this? Do you plan a new release to fix this very simple bug? Thank you.
From: jaywhy [...] gmail.com
Show quoted text
> Any news on this? > > Do you plan a new release to fix this very simple bug? > > Thank you.
I totally forgot about this. Updated.