* Todd Lyons <[email protected]> [2009-09-21 05:45]:
> On Wed, Sep 16, 2009 at 7:20 AM, Ascii King <[email protected]> wrote:
> > Thanks, Denny. that's perfect. Just to complete the question
> > for the archives, you would call the no_wrapper like this:
> > $c->stash->{no_wrapper => 1};
>
> Is this a typo? Should it be () instead of {} ?
Yes. It should be either of the following:
$c->stash->{no_wrapper} = 1;
$c->stash( no_wrapper => 1 );
I always prefer the latter.
Regards,
--
Aristotle Pagaltzis // <http://plasmasturm.org/>
_______________________________________________
List: [email protected]
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/