From f499058467a91b1db84891b2afeb540dc7d85ae1 Mon Sep 17 00:00:00 2001 From: floam Date: Fri, 24 Mar 2006 07:06:02 +0000 Subject: Changes! git-svn-id: svn://svn.icculus.org/quake3/trunk@657 edf5b092-35ff-0310-97b2-ce42778d08ea --- web/include/thebrain.php | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 web/include/thebrain.php (limited to 'web/include/thebrain.php') 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 @@ -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 = ""; - } - $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']; -} -?> -- cgit v1.2.3