|
From: Chris W. <la...@us...> - 2001-11-29 04:14:08
|
Update of /cvsroot/openinteract/OpenInteract/pkg/base_page/OpenInteract
In directory usw-pr-cvs1:/tmp/cvs-serv32723/OpenInteract
Modified Files:
Page.pm
Log Message:
fix small but important error
Index: Page.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/pkg/base_page/OpenInteract/Page.pm,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** Page.pm 2001/11/27 13:20:47 1.7
--- Page.pm 2001/11/29 04:14:06 1.8
***************
*** 129,133 ****
return 1 unless ( $self->{content} );
my $storage_class = $STORAGE_CLASS{ $self->{storage} };
! return $self->{content} = $storage_class->save( $self );
}
--- 129,133 ----
return 1 unless ( $self->{content} );
my $storage_class = $STORAGE_CLASS{ $self->{storage} };
! return $self->{content} = $storage_class->save( $self, $self->{content} );
}
|