Skip Menu |

This queue is for tickets about the Catalyst-View-TT CPAN distribution.

Report information
The Basics
Id: 57159
Status: resolved
Priority: 0/
Queue: Catalyst-View-TT

People
Owner: Nobody in particular
Requestors: FWIE [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: 0.34



Subject: [Patch] POD typos
The attached patch against 0.34 fixes some POD. Thanks, Frank
Subject: TT.pm.patch
diff --git a/lib/Catalyst/View/TT.pm b/lib/Catalyst/View/TT.pm index 861d047..894f03b 100644 --- a/lib/Catalyst/View/TT.pm +++ b/lib/Catalyst/View/TT.pm @@ -544,9 +544,9 @@ N.B. This is usually done automatically by L<Catalyst::Action::RenderView>. Renders the given template and returns output. Throws a L<Template::Exception> object upon error. -The template variables are set to C<%$args> if $args is a hashref, or -$C<< $c->stash >> otherwise. In either case the variables are augmented with -C<base> set to C< << $c->req->base >>, C<c> to C<$c> and C<name> to +The template variables are set to C<%$args> if C<$args> is a hashref, or +C<< $c->stash >> otherwise. In either case the variables are augmented with +C<base> set to C<< $c->req->base >>, C<c> to C<$c> and C<name> to C<< $c->config->{name} >>. Alternately, the C<CATALYST_VAR> configuration item can be defined to specify the name of a template variable through which the context reference (C<$c>) can be accessed. In this case, the C<c>, C<base> and
Thanks for the patch, applied as r13234. Cheers t0m