X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst.pm;h=26b5b75ff70b1b7b1189db97904553d7f7f2e9ca;hp=ace6ba1ba8fa7c82363c71e1fb9a572754ad1616;hb=8a440eba91ace539964b76901ad0e9274ece4ec6;hpb=85781ad7ed72409d08127c0c23610ecb2de5663a diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index ace6ba1..26b5b75 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -34,7 +34,8 @@ use Carp qw/croak carp/; BEGIN { require 5.008001; } -has stack => (is => 'rw', default => sub { [] }); +# FIXME lazy => 1 here makes C::P::Auth tests pass?!? +has stack => (is => 'ro', default => sub { [] }); has stash => (is => 'rw', default => sub { {} }); has state => (is => 'rw', default => 0); has stats => (is => 'rw');