Revision 466, 377 bytes
(checked in by kovell, 13 years ago)
|
Reverting 464 changes. apiuser mod actually does work for some and is used by other mods.
|
Line | |
---|
1 | <?php |
---|
2 | require_once('common/includes/class.parser.php'); |
---|
3 | require_once('common/includes/class.phpmailer.php'); |
---|
4 | require_once('common/includes/class.kill.php'); |
---|
5 | |
---|
6 | $page = new Page('PHP BB3 Error page'); |
---|
7 | $kb = new Killboard(KB_SITE); |
---|
8 | $html.='<h1>You Need to be logged to the forum before</h1>'; |
---|
9 | $page->setContent($html); |
---|
10 | $page->generate(); |
---|
11 | unset($_SESSION['phpOK']); |
---|
12 | |
---|
13 | ?> |
---|