X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-logout.php;h=444063102b52d84327a0bbbf56aa24cc24c1bb79;hb=9a7e55141378f5323480fcbf33b033d2750392f4;hp=5d7612c970ee599b4d2e464c36b88c8fd9ba1d24;hpb=1cbf289d059637cb2707b0f5384637f081ad6402;p=mailer.git diff --git a/inc/modules/member/what-logout.php b/inc/modules/member/what-logout.php index 5d7612c970..444063102b 100644 --- a/inc/modules/member/what-logout.php +++ b/inc/modules/member/what-logout.php @@ -14,12 +14,11 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * + * @TODO Rewrite the code to a filter * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -39,7 +38,7 @@ // Some security stuff... if (!defined('__SECURITY')) { - die(); + exit(); } elseif (!isMember()) { redirectToIndexMemberOnlyModule(); } @@ -47,9 +46,13 @@ if (!defined('__SECURITY')) { // Base URL for redirection (both cases) $url = 'modules.php?module=index&code='; -if (destroyMemberSession()) { +// Do the logout but keep session if current user is also admin +if (destroyMemberSession(!isAdmin())) { // Remove theme cookie as well - if (isExtensionActive('theme')) setTheme(''); + // @TODO Move this in a filter, e.g. member_logout + if (isExtensionActive('theme')) { + setMailerTheme(''); + } // END - if // Logout completed $url .= getCode('LOGOUT_DONE');