Fix the configured title that is displayed when an asset is added

to the cart.
This commit is contained in:
Colin Kuskie 2008-07-31 02:41:40 +00:00
parent 448f1ffdf5
commit 05f85c5db3
2 changed files with 2 additions and 1 deletions

View file

@ -357,7 +357,7 @@ Product.
sub getConfiguredTitle {
my $self = shift;
return $self->getOptions->{shortdesc};
return join ' - ', $self->getTitle, $self->getOptions->{shortdesc};
}