* Moved all of the session-management code from ctdlheader.php to
authorArt Cancro <ajc@citadel.org>
Sun, 9 Nov 2003 17:53:47 +0000 (17:53 +0000)
committerArt Cancro <ajc@citadel.org>
Sun, 9 Nov 2003 17:53:47 +0000 (17:53 +0000)
  ctdlsession.php, leaving only a single function call.  This will
  hopefully make ctdlheader.php more palatable to non-programmers.

ctdlphp/ChangeLog
ctdlphp/ctdlheader.php
ctdlphp/ctdlsession.php

index f9976427ef4a42fe5af0f446f28cc523ecefa460..4f638b7d2a6203c35e245aac1beefd9b41b7b354 100644 (file)
@@ -1,4 +1,9 @@
  $Log$
+ Revision 1.15  2003/11/09 17:53:47  ajc
+ * Moved all of the session-management code from ctdlheader.php to
+   ctdlsession.php, leaving only a single function call.  This will
+   hopefully make ctdlheader.php more palatable to non-programmers.
+
  Revision 1.14  2003/11/07 15:56:13  ajc
  * ctdlprotocol.php: known room list fetch now sets subscript "hasnewmsgs"
  * listrooms.php: render rooms with unseen messages in boldface
@@ -61,3 +66,4 @@
 
  Revision 1.1  2003/10/31 03:47:13  ajc
  * Initial CVS import
+
index 512e6c9377b15a8dfc5a6a621be48333c13c33c9..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,29 +13,8 @@ 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();
 
-       // If the user is trying to call up any page other than
-       // login.php logout.php do_login.php,
-       // and the session is not logged in, redirect to login.php
-       //
-       if ($_SESSION["logged_in"] != 1) {
-               $filename = basename(getenv('SCRIPT_NAME'));
-               if (    (strcmp($filename, "login.php"))
-                  &&   (strcmp($filename, "logout.php"))
-                  &&   (strcmp($filename, "do_login.php"))
-               ) {
-                       header("Location: login.php");
-                       exit(0);
-               }
-       }
-
        echo <<<LITERAL
 
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
index b8f2dbcd14215fce35960876abf60fd69044670c..f05f9e598159efc5ebbdc8607e57da832e6c5721 100644 (file)
@@ -10,6 +10,11 @@ function establish_citadel_session() {
 
        global $session, $clientsocket;
 
+       if (strcmp('4.3.0', phpversion()) > 0) {
+               die("This program requires PHP 4.3.0 or newer.");
+       }
+
+
        session_start();
 
        if ($_SESSION["ctdlsession"]) {
@@ -72,6 +77,22 @@ function establish_citadel_session() {
                echo "ERROR: no Citadel socket!<BR>\n";
                flush();
        }
+
+       // If the user is trying to call up any page other than
+       // login.php logout.php do_login.php,
+       // and the session is not logged in, redirect to login.php
+       //
+       if ($_SESSION["logged_in"] != 1) {
+               $filename = basename(getenv('SCRIPT_NAME'));
+               if (    (strcmp($filename, "login.php"))
+                  &&   (strcmp($filename, "logout.php"))
+                  &&   (strcmp($filename, "do_login.php"))
+               ) {
+                       header("Location: login.php");
+                       exit(0);
+               }
+       }
+
        
 }