Drop session from get data generated by exportAssetData

This commit is contained in:
Colin Kuskie 2010-05-09 19:16:40 -07:00
parent 4c3b615f7a
commit 8be35923e4

View file

@ -48,6 +48,7 @@ Converts all the properties of this asset into a hash reference and then returns
sub exportAssetData {
my $self = shift;
my %data = %{$self->get};
delete $data{'session'};
my %hash = ( properties => \%data, storage=>[] );
return \%hash;
}