first name and last name are separated by a space, not a break
This commit is contained in:
parent
85e2c32919
commit
1346008650
1 changed files with 1 additions and 1 deletions
|
|
@ -111,7 +111,7 @@ Returns an HTML formatted address for display.
|
|||
|
||||
sub getHtmlFormatted {
|
||||
my $self = shift;
|
||||
my $address = $self->get("firstName"). "<br />" .$self->get("lastName") . "<br />" . $self->get("address1") . "<br />";
|
||||
my $address = $self->get("firstName"). " " .$self->get("lastName") . "<br />" . $self->get("address1") . "<br />";
|
||||
$address .= $self->get("address2") . "<br />" if ($self->get("address2") ne "");
|
||||
$address .= $self->get("address3") . "<br />" if ($self->get("address3") ne "");
|
||||
$address .= $self->get("city") . ", ";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue