diff options
Diffstat (limited to 'web/include/thebrain.php')
-rw-r--r-- | web/include/thebrain.php | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/web/include/thebrain.php b/web/include/thebrain.php deleted file mode 100644 index 6b95b61..0000000 --- a/web/include/thebrain.php +++ /dev/null @@ -1,42 +0,0 @@ -<?php -if ((strpos($_SERVER['HTTP_ACCEPT'], "application/xhtml+xml")) || ($ua->parent == "Validation Checkers")) { - $content_type = "application/xhtml+xml"; -} - -elseif ((strpos($_SERVER['HTTP_ACCEPT'], "application/xml")) || ($ua->browser == "IE" && $ua->version >= 6)) { - if ($ua->browser == "IE") { - $extradoctype = "<?xml-stylesheet type=\"text/xsl\" href=\"/include/copy.xsl\"?>"; - } - $content_type = "application/xml"; -} -else { - $content_type = "text/html"; -} - -header("Content-type: $content_type; charset=UTF-8"); - -$navlist = array( - "home" => "Home", - "get" => "Get It", - "help" => "Help", - "status" => "Status", - "discuss" => "Discussion", -); - -function include_safe($file) { - if (file_exists("include/$file")) { - include($file); - } - else { - $code = 404; - require("errors.php"); - } -} - -if (!$_GET['page']) { - $page = "home"; -} -else { - $page = $_GET['page']; -} -?> |