Vor dem Aufruf von Funktionen auf der Instanz $self muss $self ge-blesst werden.
authorMoritz Bunkus <m.bunkus@linet-services.de>
Fri, 14 Sep 2007 14:08:17 +0000 (14:08 +0000)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Fri, 14 Sep 2007 14:08:17 +0000 (14:08 +0000)
SL/ReportGenerator.pm

index cdcf18f..7469451 100644 (file)
@@ -48,9 +48,11 @@ sub new {
 
   $self->{data_present} = 0;
 
+  bless $self, $type;
+
   $self->set_options(@_) if (@_);
 
-  return bless $self, $type;
+  return $self;
 }
 
 sub set_columns {