[Catalyst-commits] r10482 -
Catalyst-Devel/1.00/branches/helper_refactor/lib/Catalyst
dhoss at dev.catalyst.perl.org
dhoss at dev.catalyst.perl.org
Tue Jun 9 07:20:46 GMT 2009
Author: dhoss
Date: 2009-06-09 07:20:45 +0000 (Tue, 09 Jun 2009)
New Revision: 10482
Modified:
Catalyst-Devel/1.00/branches/helper_refactor/lib/Catalyst/Helper.pm
Log:
fixed render_sharedir_file, we were passing $self twice
Modified: Catalyst-Devel/1.00/branches/helper_refactor/lib/Catalyst/Helper.pm
===================================================================
--- Catalyst-Devel/1.00/branches/helper_refactor/lib/Catalyst/Helper.pm 2009-06-09 06:25:01 UTC (rev 10481)
+++ Catalyst-Devel/1.00/branches/helper_refactor/lib/Catalyst/Helper.pm 2009-06-09 07:20:45 UTC (rev 10482)
@@ -283,7 +283,7 @@
sub render_sharedir_file {
my ( $self, $file, $path, $vars ) = @_;
my $template = $self->get_sharedir_file( $file );
- $self->render_file_contents($self, $template, $path, $vars);
+ $self->render_file_contents($template, $path, $vars);
}
sub render_file_contents {
More information about the Catalyst-commits
mailing list