10 lines
242 B
PHP
10 lines
242 B
PHP
|
<?php
|
||
|
$message = 'You were banned on ' . date(FMF_DATE_FORMAT, $banTimestamp) . '.<br/>';
|
||
|
|
||
|
if(empty($banReason)) {
|
||
|
$message .= '<i>No reason was provided.</i>';
|
||
|
} else {
|
||
|
$message .= $banReason;
|
||
|
}
|
||
|
|
||
|
include_once __DIR__ . '/notice.php';
|