]> code.citadel.org Git - citadel.git/blobdiff - ctdlphp/ctdlheader.php
* Moved all of the session-management code from ctdlheader.php to
[citadel.git] / ctdlphp / ctdlheader.php
index 2bf55be696a76b0ecc30a164290c40aa80a932ea..1a9ac6583d47e059e59a91f052be5892dbbec8e2 100644 (file)
@@ -3,7 +3,7 @@
 // $Id$
 //
 // Header and footer code to be included on every page.  Not only does it
-// contain some common markup, but it also includes some code glue that holds
+// contain some common markup, but it also calls some code glue that holds
 // the session together.
 //
 // Copyright (c) 2003 by Art Cancro <ajc@uncensored.citadel.org>
@@ -13,12 +13,6 @@ include "ctdlsession.php";
 include "ctdlprotocol.php";
 
 function bbs_page_header() {
-       global $session;
-
-       if(strcmp('4.3.0', phpversion()) > 0) {
-               die("This program requires PHP 4.3.0 or newer.");
-       }
-
        establish_citadel_session();
 
        echo <<<LITERAL
@@ -52,12 +46,13 @@ LITERAL;
        alink="#DD0000"
 >
 
+<div align=right>
+<A HREF="logout.php">Log out</A>
+</div>
+<HR>
+
 LITERAL;
 
-       echo "Your session ID is ", $session, "<BR>\n";
-       echo "<A HREF=\"logout.php\">Log out</A><HR>";
-       // flush();
-       // test_for_echo();
 }