1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-30 09:39:55 +02:00

Fixes #4669 - Forum print issue.

This commit is contained in:
Cameron
2022-03-10 12:54:22 -08:00
parent 9c6a5e96fe
commit 743edf8917
3 changed files with 11 additions and 31 deletions

View File

@@ -177,11 +177,11 @@ if (isset($_POST['emailsubmit']))
if (sendemail($email_send, LAN_EMAIL_3.SITENAME,$email_body))
{
$text = "<div style='text-align:center'>".LAN_EMAIL_10." ".$email_send."</div>";
$text = "<div class='alert alert-success alert-block' style='text-align:center'>".LAN_EMAIL_10." ".$email_send."</div>";
}
else
{
$text = "<div style='text-align:center'>".LAN_EMAIL_9."</div>";
$text = "<div class='alert alert-dangere alert-block' style='text-align:center'>".LAN_EMAIL_9."</div>";
}
$ns->tablerender(LAN_EMAIL_11, $text);
}