Small update. :o
[iDB.git] / index.php
blob88c18a1653dc293e827064d2964b02170658f8cb
1 <?php
2 /*
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the Revised BSD License.
6 This program is distributed in the hope that it will be useful,
7 but WITHOUT ANY WARRANTY; without even the implied warranty of
8 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 Revised BSD License for more details.
11 Copyright 2004-2009 iDB Support - http://idb.berlios.de/
12 Copyright 2004-2009 Game Maker 2k - http://gamemaker2k.org/
14 $FileInfo: index.php - Last Update: 11/23/2009 SVN 357 - Author: cooldude2k $
16 if(ini_get("register_globals")) {
17 require_once('inc/misc/killglobals.php'); }
18 $checklowview = true;
19 require('preindex.php');
20 $usefileext = $Settings['file_ext'];
21 if($ext=="noext"||$ext=="no ext"||$ext=="no+ext") { $usefileext = ""; }
22 $filewpath = $exfile['index'].$usefileext.$_SERVER['PATH_INFO'];
25 <title> <?php echo $Settings['board_name'].$idbpowertitle; ?> </title>
26 </head>
27 <body>
28 <?php if($_GET['act']!="lowview") {
29 require($SettDir['inc'].'navbar.php'); }
31 if($_GET['act']==null)
32 { $_GET['act']="view"; }
33 if($_GET['act']=="view")
34 { require($SettDir['inc'].'forums.php'); }
35 if($_GET['act']=="lowview")
36 { require($SettDir['inc'].'lowforums.php'); }
37 if($_GET['act']=="view"||$_GET['act']=="stats")
38 { require($SettDir['inc'].'stats.php'); }
39 require($SettDir['inc'].'endpage.php');
41 </body>
42 </html>
43 <?php fix_amp($Settings['use_gzip'],$GZipEncode['Type']); ?>