From ccb67a6b8033f3882f19b36b620e261983f8bd43 Mon Sep 17 00:00:00 2001 From: chromatic Date: Wed, 1 Feb 2012 11:14:02 -0800 Subject: [PATCH] Fixed typo in proxy AUTOLOAD (Jean-Pierre Rupp). --- CREDITS | 3 +++ sections/autoload.pod | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CREDITS b/CREDITS index 01fa2718..28a677b0 100644 --- a/CREDITS +++ b/CREDITS @@ -242,3 +242,6 @@ E: kimmel.k.programmer@gmail.com N: Ruud H. G. van Tol E: rvtol@isolution.nl + +N: Jean-Pierre Rupp +E: jpierre@xeno-gensis.com diff --git a/sections/autoload.pod b/sections/autoload.pod index 3f7e0b36..c7eb31aa 100644 --- a/sections/autoload.pod +++ b/sections/autoload.pod @@ -149,7 +149,7 @@ them: Log::method_call( $name, @_ ); my $self = shift; - return $self->$name( @_ ); + return $$self->$name( @_ ); } B