mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-12 01:50:48 +01:00
15 lines
314 B
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()
|
|
))
|
|
));
|
|
?>
|