This repository has been archived on 2021-07-02. You can view files and clone it, but cannot push or open issues or pull requests.
chie/layout/banned.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';