X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-logout.php;h=5d7612c970ee599b4d2e464c36b88c8fd9ba1d24;hp=d16554c595308dd84941c699373b2ddc43fdeb7c;hb=0715fa7aa8e5e70bcf1d957fb09ae655c3896c4e;hpb=33989fa4a558317899c3e68cb51e1be552c4ce8e diff --git a/inc/modules/member/what-logout.php b/inc/modules/member/what-logout.php index d16554c595..5d7612c970 100644 --- a/inc/modules/member/what-logout.php +++ b/inc/modules/member/what-logout.php @@ -45,21 +45,21 @@ if (!defined('__SECURITY')) { } // Base URL for redirection (both cases) -$URL = 'modules.php?module=index&code='; +$url = 'modules.php?module=index&code='; if (destroyMemberSession()) { // Remove theme cookie as well if (isExtensionActive('theme')) setTheme(''); // Logout completed - $URL .= getCode('LOGOUT_DONE'); + $url .= getCode('LOGOUT_DONE'); } else { // Cannot logout! :-( - $URL .= getCode('LOGOUT_FAILED'); + $url .= getCode('LOGOUT_FAILED'); } // Load the URL -redirectToUrl($URL); +redirectToUrl($url); // [EOF] ?>