1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-09-24 19:48:23 +02:00
vichan/banned.php

8 lines
234 B
PHP
Raw Normal View History

2012-12-23 16:47:45 +01:00
<?php
require_once 'inc/functions.php';
checkBan();
print "<!doctype html><html><head><meta charset='utf-8'><title>"._("Banned?")."</title></head><body>";
print "<h1>"._("You are not banned.")."</h1>";
2012-12-23 16:47:45 +01:00
print "</body></html>";
?>