document the overridden duplicate method in Sku/Product.pm

This commit is contained in:
Colin Kuskie 2008-07-14 19:19:44 +00:00
parent ce9f7e44e6
commit 6af150aa5d

View file

@ -213,6 +213,13 @@ sub deleteCollateral {
}
#-------------------------------------------------------------------
=head2 duplicate
Override the duplicate method so uploaded files and images also get copied.
=cut
sub duplicate {
my $self = shift;
my $newAsset = $self->SUPER::duplicate(@_);