leftypol/banned.php

15 lines
314 B
PHP

<?php
require_once 'inc/bootstrap.php';
checkBan();
//If the user is not banned, show the "not banned" page.
die(
Element('page.html', array(
'title' => _('Not banned!'),
'config' => $config,
'nojavascript' => true,
'body' => Element('notbanned.html', array()
))
));
?>