mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Remove blank in email footer html tag
In the email footer is an presentation error after the account name because of the blank in the ending p-tag. I have removed the blank.
This commit is contained in:
parent
6f097c34c2
commit
56657f8f15
@ -983,7 +983,7 @@ class Account extends Eloquent
|
||||
// Add line breaks if HTML isn't already being used
|
||||
return strip_tags($this->email_footer) == $this->email_footer ? nl2br($this->email_footer) : $this->email_footer;
|
||||
} else {
|
||||
return "<p>" . trans('texts.email_signature') . "\n<br>\$account</ p>";
|
||||
return "<p>" . trans('texts.email_signature') . "\n<br>\$account</p>";
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user