From f31f46f6f60c2a4d6b4f69694e020c2ec48ab807 Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 28 Jan 2002 11:24:50 +0000 Subject: [PATCH] oops, syntax error in new() check for missing subclass table sub (eek) --- FS/FS/Record.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FS/FS/Record.pm b/FS/FS/Record.pm index 5c828b7c6..6b7997f21 100644 --- a/FS/FS/Record.pm +++ b/FS/FS/Record.pm @@ -122,7 +122,7 @@ sub new { my $self = {}; bless ($self, $class); - unless defined ( $self->table ) { + unless ( defined ( $self->table ) ) { $self->{'Table'} = shift; carp "warning: FS::Record::new called with table name ". $self->{'Table'}; } -- 2.11.0