Added a comma after each msgnum exported. The parser was globbing them all together...
[citadel.git] / ctdlphp / logout.php
1 <?PHP
2
3 // $Id$
4 //
5 // Log out the user and destroy the session.
6 //
7 // Copyright (c) 2003 by Art Cancro <ajc@uncensored.citadel.org>
8 // This program is released under the terms of the GNU General Public License.
9
10         include "ctdlheader.php";
11
12         bbs_page_header();
13
14         echo ctdl_mesg("goodbye");
15
16         echo "<a href=\"login.php\">Log in again</a><BR>\n" ;
17
18         bbs_page_footer();
19         ctdl_end_session();
20 ?>