-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.php
More file actions
39 lines (34 loc) · 1003 Bytes
/
Copy pathindex.php
File metadata and controls
39 lines (34 loc) · 1003 Bytes
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
<?php
/***
* INTEGRATED FLEET MANAGEMENT SYSTEM
* OBSIDIAN FLEET
* http://www.obsidianfleet.net/ifs/
*
* Developer: Frank Anon
* fanon@obsidianfleet.net
*
* Version: 1.11
* Release Date: June 3, 2004
*
* Copyright (C) 2003-2004 Frank Anon for Obsidian Fleet RPG
* Distributed under the terms of the GNU General Public License
* See doc/LICENSE for details
*
* Date: 12/9/03
* Comments: Calls component pages that make up the main page outline
*
***/
// For security check
define ("IFS", TRUE);
define ("IFS-index", TRUE);
// header includes db and session init, theme selection, top banner, etc
$reqtype = "";
$relpath = "";
$title = "Powered by Obsidian Fleet IFS (please change this to your title)";
require ("includes/header.php");
// main page, including menus, components, and an include to the main "meat"
require ("themes/" . $cur_theme . "-main.php");
// footer includes copyright disclaimer, etc
$no_back_to = 1;
require ("includes/footer.php");
?>