diff options
Diffstat (limited to 'html/index.php')
-rwxr-xr-x | html/index.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/html/index.php b/html/index.php index 4b12de6..545bc2d 100755 --- a/html/index.php +++ b/html/index.php @@ -1,10 +1,10 @@ <?php
include ("includes/config.php");
include ("includes/functions.php");
+
if (!isset($_GET['noheader'])) include ("includes/header.php");
switch ($_GET["p"])
-
{
case "": page(); break; // Our opening page
@@ -31,9 +31,10 @@ switch ($_GET["p"]) case "totals": totals(); break; // Totals summary
case "watchlist": watchlist(); break; // The viewer's watchlist
-
+
case "credits": credits(); break; // Credits
case "help": help(); break; // Help Page
+
default : page(); break; // Our opening page
}
@@ -153,4 +154,4 @@ function help() }
include("includes/footer.php");
-?>
\ No newline at end of file +?>
|