X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=ctdlphp%2Fctdlheader.php;h=66dca66362cdc390babcde39976c356c9de2d911;hb=HEAD;hp=1a9ac6583d47e059e59a91f052be5892dbbec8e2;hpb=8326fa85d8b07c85a422f33fb26f585e7aa954d5;p=citadel.git diff --git a/ctdlphp/ctdlheader.php b/ctdlphp/ctdlheader.php deleted file mode 100644 index 1a9ac6583..000000000 --- a/ctdlphp/ctdlheader.php +++ /dev/null @@ -1,65 +0,0 @@ - -// This program is released under the terms of the GNU General Public License. - -include "ctdlsession.php"; -include "ctdlprotocol.php"; - -function bbs_page_header() { - establish_citadel_session(); - - echo << - - - - - - - -LITERAL; - - if ($_SESSION["serv_humannode"]) { - echo $_SESSION["serv_humannode"] ; - } - else { - echo "BBS powered by Citadel" ; - } - - echo <<<LITERAL - - - - - -
-Log out -
-
- -LITERAL; - -} - - -function bbs_page_footer() { - echo "
"; - echo "Powered by Citadel. And a few cups of coffee.
\n"; - echo "\n"; -} - -?>