[Web] Fix BCC error message

This commit is contained in:
andryyy
2019-06-16 16:00:41 +02:00
parent 59798357f7
commit c7a85fc520
3 changed files with 3 additions and 3 deletions

View File

@@ -69,7 +69,7 @@ function bcc($_action, $_data = null, $attr = null) {
$_SESSION['return'][] = array(
'type' => 'danger',
'log' => array(__FUNCTION__, $_action, $_data, $_attr),
'msg' => 'bcc_must_be_email'
'msg' => array('bcc_must_be_email', htmlspecialchars($bcc_dest))
);
return false;
}