emit a warning in this unlikely case again
authorivan <ivan>
Thu, 24 Jan 2002 17:02:53 +0000 (17:02 +0000)
committerivan <ivan>
Thu, 24 Jan 2002 17:02:53 +0000 (17:02 +0000)
FS/FS/Record.pm

index 6c0f5f8..5c828b7 100644 (file)
@@ -122,7 +122,10 @@ sub new {
   my $self = {};
   bless ($self, $class);
 
-  $self->{'Table'} = shift unless defined ( $self->table );
+  unless defined ( $self->table ) {
+    $self->{'Table'} = shift;
+    carp "warning: FS::Record::new called with table name ". $self->{'Table'};
+  }
 
   my $hashref = $self->{'Hash'} = shift;