diff --git a/lib/WebGUI/AssetPackage.pm b/lib/WebGUI/AssetPackage.pm index 001fe41a4..d08d78327 100644 --- a/lib/WebGUI/AssetPackage.pm +++ b/lib/WebGUI/AssetPackage.pm @@ -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; }