lainchan/inc/user.php

11 lines
253 B
PHP
Raw Normal View History

2010-11-02 06:57:33 -04:00
<?php
2011-04-13 08:21:07 -04:00
if($_SERVER['SCRIPT_FILENAME'] == str_replace('\\', '/', __FILE__)) {
// You cannot request this file directly.
header('Location: ../', true, 302);
exit;
}
2010-12-10 05:03:20 -05:00
// 'false' means that the user is not logged in as a moderator
$mod = false;
2010-11-02 06:57:33 -04:00