Subject: | Documentation lacks updates |
Date: | Fri, 29 Jan 2010 15:07:01 +0100 |
To: | bug-Catalyst-Controller-HTML-FormFu [...] rt.cpan.org |
From: | Sven Eppler <sven [...] sveneppler.de> |
Hi There,
just wanted to let you know, that after Catalyst 5.8 the "use base
'Catalyst::Controller::HTML::FormFu';" doesn't work anymore.
Somewhere should be stated that now you should use "extends" provided by
Moose which is currently encapsulated in an BEGIN-block:
Controller created with myapp_create.pl:
package MyApp;
BEGIN {extends 'Catalyst::Controller'; }
Becomes to:
package MyApp;
BEGIN {extends 'Catalyst::Controller::HTML::FormFu'; }
Bye,
Sven