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:
Stefan Welsch 2016-04-05 11:43:07 +02:00
parent 6f097c34c2
commit 56657f8f15

View File

@ -983,7 +983,7 @@ class Account extends Eloquent
// Add line breaks if HTML isn't already being used // 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; return strip_tags($this->email_footer) == $this->email_footer ? nl2br($this->email_footer) : $this->email_footer;
} else { } else {
return "<p>" . trans('texts.email_signature') . "\n<br>\$account</ p>"; return "<p>" . trans('texts.email_signature') . "\n<br>\$account</p>";
} }
} }