fix dlen
[citadel.git] / ctdlphp / ctdlheader.php
diff --git a/ctdlphp/ctdlheader.php b/ctdlphp/ctdlheader.php
deleted file mode 100644 (file)
index 0f56075..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-<?PHP
-
-include "ctdlsession.php";
-include "ctdlprotocol.php";
-
-function bbs_page_header() {
-
-       global $session;
-
-       establish_citadel_session();
-
-
-       echo <<<LITERAL
-
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-       <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-       <meta name="Description" content="Citadel BBS">
-       <meta name="Keywords" content="citadel,bbs">
-       <meta name="MSSmartTagsPreventParsing" content="TRUE">
-       <title>FIXME NAME BBS</title>
-</head>
-
-<body
-       text="#000000"
-       bgcolor="#FFFFFF"
-       link="#0000FF"
-       vlink="#990066"
-       alink="#DD0000"
-
-LITERAL;
-
-       echo "Your session ID is ", $session, "<BR>\n";
-       echo "<A HREF=\"logout.php\">Log out</A><HR>";
-       // flush();
-       // test_for_echo();
-}
-
-
-function bbs_page_footer() {
-       echo "<HR>";
-       echo "Copyright &copy; 2003 by The SCO Group.<BR>\n";
-       echo "</BODY></HTML>\n";
-}
-
-?>