Remove redundant closing tag

[MAILPOET-3121]
This commit is contained in:
Pavel Dohnal
2020-09-02 13:48:50 +02:00
committed by Veljko V
parent 9403d8c2a2
commit 7c3e964d92

View File

@@ -38,7 +38,7 @@ class UnauthorizedEmailNotice {
}
private function getMessageText($validationError) {
$text = $this->wp->_x('<b>Sending all of your emails has been paused</b> because your email address %s hasnt been authorized yet.</b>',
$text = $this->wp->_x('<b>Sending all of your emails has been paused</b> because your email address %s hasnt been authorized yet.',
'Email addresses have to be authorized to be used to send emails. %s will be replaced by an email address.',
'mailpoet');
$message = str_replace('%s', EscapeHelper::escapeHtmlText($validationError['invalid_sender_address']), $text);