leftypol/banned.php

16 lines
345 B
PHP
Raw Normal View History

2012-12-23 15:47:45 +00:00
<?php
require_once 'inc/functions.php';
require_once 'inc/bans.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()
))
));
2012-12-23 15:47:45 +00:00
?>