]> code.citadel.org Git - citadel.git/blobdiff - ctdlphp/ctdlheader.php
* cleanup
[citadel.git] / ctdlphp / ctdlheader.php
index 1a9ac6583d47e059e59a91f052be5892dbbec8e2..c5b8f5e6421fce1a0db4770f753c35d5c4c04002 100644 (file)
@@ -9,14 +9,20 @@
 // Copyright (c) 2003 by Art Cancro <ajc@uncensored.citadel.org>
 // This program is released under the terms of the GNU General Public License.
 
+
+// All of the back-end magic gets included from here.  The rest of the
+// pages in the system then only have to include ctdlheader.php (since it
+// is required) and they get the others automatically.
+//
 include "ctdlsession.php";
 include "ctdlprotocol.php";
 
 function bbs_page_header() {
+
+       // Make sure we're connected to Citadel.  Do not remove this!!
        establish_citadel_session();
 
        echo <<<LITERAL
-
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html>
 <head>
@@ -52,7 +58,6 @@ LITERAL;
 <HR>
 
 LITERAL;
-
 }
 
 
@@ -62,4 +67,5 @@ function bbs_page_footer() {
        echo "</BODY></HTML>\n";
 }
 
+
 ?>