New naming convention applied to many functions, see #118 for details
[mailer.git] / inc / modules / member / what-logout.php
index dd905f4329f77902645faae1c7b04ef3037c6e04..fa02eecd8d2a605081d107e527cad43f20db37e3 100644 (file)
@@ -41,15 +41,15 @@ if (!defined('__SECURITY')) {
        $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=';
 
-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);
 
 //
 ?>