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

@ -10,6 +10,7 @@
- Exposed a form element for the GalleryAlbum Others Can Add property
- fixed: EMS 2.0 migration badges
- fixed: per item shipping
- fixed: product title problem
7.5.18
- fixed: Collateral Image Manager broken in Firefox 3

View file

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