leftypol_vichan/banned.php

15 lines
314 B
PHP
Raw Normal View History

2012-12-23 15:47:45 +00:00
<?php
2021-02-13 18:24:03 +00:00
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('not_banned.html', array()
))
));
2012-12-23 15:47:45 +00:00
?>