From 844f3a7ee84b480f3a23b328259bd2fc69981066 Mon Sep 17 00:00:00 2001 From: Ralf Ertzinger Date: Tue, 15 Apr 2008 20:30:45 +0200 Subject: [PATCH] - Fix subroutine ref --- videosite/Base.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/videosite/Base.pm b/videosite/Base.pm index 2db4969..cad4374 100644 --- a/videosite/Base.pm +++ b/videosite/Base.pm @@ -23,7 +23,7 @@ sub error { $t = sprintf(shift(@_), @_); $t =~ s/%/%%/g; - $self->{'_OUT'}->($t); + $self->{'_OUT'}($t); } sub debug { -- 1.8.3.1