Added a comma after each msgnum exported. The parser was globbing them all together...
[citadel.git] / ctdlphp / logout.php
index 14a2c68d7953d30f042aa8f7b9ad691bf5882759..ca36d77fa05b72ef2ee094c5e292dd3b1a72932c 100644 (file)
@@ -1,20 +1,20 @@
 <?PHP
-       include "ctdlheader.php";
-
-       bbs_page_header();
 
-       echo <<<LITERAL
+// $Id$
+//
+// Log out the user and destroy the session.
+//
+// Copyright (c) 2003 by Art Cancro <ajc@uncensored.citadel.org>
+// This program is released under the terms of the GNU General Public License.
 
-<h1>Goodbye</h1>
+       include "ctdlheader.php";
 
-You are being logged out.
+       bbs_page_header();
 
-<a href="index.php">Log in again</a><BR>
+       echo ctdl_mesg("goodbye");
 
-LITERAL;
+       echo "<a href=\"login.php\">Log in again</a><BR>\n" ;
 
-       ctdl_end_session();
        bbs_page_footer();
-
+       ctdl_end_session();
 ?>
-