2012-12-23 10:47:45 -05:00
|
|
|
<?php
|
|
|
|
require_once 'inc/functions.php';
|
2015-04-06 20:29:38 -04:00
|
|
|
require_once 'inc/bans.php';
|
2012-12-23 10:47:45 -05:00
|
|
|
checkBan();
|
2013-07-27 01:19:30 -04:00
|
|
|
print "<!doctype html><html><head><meta charset='utf-8'><title>"._("Banned?")."</title></head><body>";
|
|
|
|
print "<h1>"._("You are not banned.")."</h1>";
|
2012-12-23 10:47:45 -05:00
|
|
|
print "</body></html>";
|
|
|
|
?>
|