X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst.pm;h=71a5e560ab99e8d4d2c84540ed7728991d5fb280;hp=f69afe0538a4c9b2e561a8c3afa3ebb852a35416;hb=87f504360777193d96945014faa1d058224fcb0e;hpb=d685f38e02912b15dc8d08499e4006561d7174a2 diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index f69afe0..71a5e56 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -84,7 +84,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.90005'; +our $VERSION = '5.90006'; sub import { my ( $class, @arguments ) = @_; @@ -1576,7 +1576,7 @@ EOF =head2 run_options Contains a hash of options passed from the application script, including -the original ARGV the script receieved, the processed values from that +the original ARGV the script received, the processed values from that ARGV and any extra arguments to the script which were not processed. This can be used to add custom options to your application's scripts @@ -2652,7 +2652,7 @@ sub setup_engine { $meta->add_method(handler => sub { my $r = shift; - my $psgi_app = $class->psgi_app; + my $psgi_app = $class->_finalized_psgi_app; $apache->call_app($r, $psgi_app); });