-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.php
41 lines (34 loc) · 1.08 KB
/
admin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/*
+--------------------------------------------------------------------------
| Invision Power Board
| ========================================
| by Matthew Mecham
| (c) 2001 - 2004 Invision Power Services
|
| ========================================
|
|
|
+---------------------------------------------------------------------------
| > $Date: 2006-09-22 06:28:31 -0400 (Fri, 22 Sep 2006) $
| > $Revision: 567 $
| > $Author: matt $
+---------------------------------------------------------------------------
|
| > Admin wrapper script
| > Script written by Matt Mecham
| > Date started: 1st March 2002
|
+--------------------------------------------------------------------------
*/
require_once( './init.php' );
require ROOT_PATH . "conf_global.php";
//-----------------------------------------
// NEVER EVER try and be helpful and update
// the link below when the ACP folder changes
// You'll just be giving hackers an easy way
// to find it...
//-----------------------------------------
header( 'Location: '.$INFO['base_url'].'admin/index.php' );
?>