]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-logout.php
Fix for fatal error and naming convention applied
[mailer.git] / inc / modules / member / what-logout.php
index 7571378573ccbc53e0b690f3ad7bb6055e6e88bd..fa02eecd8d2a605081d107e527cad43f20db37e3 100644 (file)
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 } elseif (!IS_MEMBER()) {
-       LOAD_URL("modules.php?module=index");
+       redirectToUrl('modules.php?module=index');
 }
 
 // Base URL for redirection (both cases)
-$URL = "modules.php?module=index&msg=";
+$URL = 'modules.php?module=index&msg=';
 
-if (destroy_user_session()) {
+if (destroyUserSession()) {
        // Remove theme cookie as well
-       set_session("mxchange_theme", "");
+       setSession('mxchange_theme', '');
 
        // Logout completed
        $URL .= getCode('LOGOUT_DONE');
@@ -59,7 +59,7 @@ if (destroy_user_session()) {
 }
 
 // Load the URL
-LOAD_URL($URL);
+redirectToUrl($URL);
 
 //
 ?>