X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2F09_AdvancedCRUD%2F09_FormFu.pod;h=52225af923ba9e6993e46b4c9d13b990a448c7e8;hp=113720f33ecac46f4ef193ae4548c99e2991e406;hb=96a8735673ba59a0cdc20672020dffab4d6209de;hpb=da59dbea96454dbc53dc7bb5a813849bb35c6ab8 diff --git a/lib/Catalyst/Manual/Tutorial/09_AdvancedCRUD/09_FormFu.pod b/lib/Catalyst/Manual/Tutorial/09_AdvancedCRUD/09_FormFu.pod index 113720f..52225af 100644 --- a/lib/Catalyst/Manual/Tutorial/09_AdvancedCRUD/09_FormFu.pod +++ b/lib/Catalyst/Manual/Tutorial/09_AdvancedCRUD/09_FormFu.pod @@ -77,13 +77,13 @@ add additional functionality to the manually created form from Chapter 4. First, change your C to inherit from L -by changing the C line from the default of: +by changing the C line from the default of: - use parent 'Catalyst::Controller'; + BEGIN {extends 'Catalyst::Controller'; } to use the FormFu base controller class: - use parent 'Catalyst::Controller::HTML::FormFu'; + BEGIN {extends 'Catalyst::Controller::HTML::FormFu'; } =head2 Add Action to Display and Save the Form