fixed a clipboard bug

This commit is contained in:
JT Smith 2005-02-08 15:57:43 +00:00
parent e95a62e5ea
commit 63e2fa4c0e

View file

@ -2924,9 +2924,9 @@ sub www_manageClipboard {
$limit = 1;
}
foreach my $assetData (@{$self->getAssetsInClipboard($limit)}) {
push(@assets,WebGUI::Asset->newByDynamicClass($assetData->{assetId},"ManageClipboard",$assetData->{className}));
push(@assets,WebGUI::Asset->newByDynamicClass($assetData->{assetId},$assetData->{className}));
}
return $ac->render($self->getAssetManagerControl(\@assets), $header);
return $ac->render($self->getAssetManagerControl(\@assets,"ManageClipboard"), $header);
}
#-------------------------------------------------------------------