From: Tom Feist Date: Sat, 14 May 2011 18:33:30 +0000 (+0100) Subject: fix session -> Plugin::Session docu error in the manual for flash_to_stash, fixes... X-Git-Tag: 5.8008~6 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=commitdiff_plain;h=13dadd45772562fd6b1da70c751f1606e40f7806 fix session -> Plugin::Session docu error in the manual for flash_to_stash, fixes RT #68203 --- diff --git a/lib/Catalyst/Manual/Tutorial/05_Authentication.pod b/lib/Catalyst/Manual/Tutorial/05_Authentication.pod index 304a128..bc19221 100644 --- a/lib/Catalyst/Manual/Tutorial/05_Authentication.pod +++ b/lib/Catalyst/Manual/Tutorial/05_Authentication.pod @@ -846,14 +846,14 @@ C<__PACKAGE__-Econfig> setting to something like: name => 'MyApp', # Disable deprecated behavior needed by old applications disable_component_resolution_regex_fallback => 1, - session => { flash_to_stash => 1 }, + 'Plugin::Session' => { flash_to_stash => 1 }, ); B add the following to C: - + flash_to_stash 1 - + The C<__PACKAGE__-Econfig> option is probably preferable here since it's not something you will want to change at runtime without it