c048b0642357eda5f6838662e3d72017acda4b92
[mailer.git] / inc / modules / member / what-logout.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/16/2003 *
4  * ===============                              Last change: 04/03/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-logout.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Logout from member's area                        *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Aus dem Mitgliesbereich ausloggen                *
12  * -------------------------------------------------------------------- *
13  *         Logout_mod: new from 15.01.04 / Fixed Reset of Cooks         *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } elseif (!IS_MEMBER()) {
39         LOAD_URL("modules.php?module=index");
40 }
41
42 // Base URL for redirection (both cases)
43 $URL = URL."/modules.php?module=index";
44
45 // Patched by Robert Niedziela: cookies won't (?) be deleted on some newer IE versions
46
47 // NEW: Fixed the Set of Cookies, you mus add right TimeSet, if you changed it in What_login.php! (eg. time()- cookieTime
48
49
50 if (destroy_user_session()) {
51         // Remove theme cookie as well
52         set_session("mxchange_theme", "");
53
54         // Logout completed
55         $URL .= "&msg=".CODE_LOGOUT_DONE;
56
57         // Destroy session here
58         @session_destroy();
59 } else {
60         // Cannot logout! :-(
61         $URL .= "&msg=".CODE_LOGOUT_FAILED;
62 }
63
64 // Load the URL
65 LOAD_URL($URL);
66
67 //
68 ?>