Even more rewrites/fixes from EL branch (please report any broken part after you...
[mailer.git] / inc / modules / member / what-logout.php
index d16554c595308dd84941c699373b2ddc43fdeb7c..5d7612c970ee599b4d2e464c36b88c8fd9ba1d24 100644 (file)
@@ -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]
 ?>