forked from leftypol/leftypol
Added a better 'not banned' response if a user navigates to banned.php whilst not being banned.
This commit is contained in:
parent
7c27823868
commit
8525aaabfa
2 changed files with 22 additions and 6 deletions
22
banned.php
22
banned.php
|
@ -1,8 +1,18 @@
|
|||
<?php
|
||||
require_once 'inc/functions.php';
|
||||
require_once 'inc/bans.php';
|
||||
checkBan();
|
||||
print "<!doctype html><html><head><meta charset='utf-8'><title>"._("Banned?")."</title></head><body>";
|
||||
print "<h1>"._("You are not banned.")."</h1>";
|
||||
print "</body></html>";
|
||||
require_once 'inc/functions.php';
|
||||
require_once 'inc/bans.php';
|
||||
checkBan();
|
||||
print "<!doctype html><html><head><meta charset='utf-8'><title>"._("Banned?")."</title></head><body>";
|
||||
|
||||
//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()
|
||||
))
|
||||
));
|
||||
|
||||
print "</body></html>";
|
||||
?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue