]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/online_functions.php
New naming convention applied to many functions, see #118 for details
[mailer.git] / inc / libs / online_functions.php
index c65a4953f7a17208a4138f5a839734495cbe7e83..3d8578fc8443a47fa64efd2a290f238864980609 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);
 }
 
 // Filter for updates/extends on the online list
 function FILTER_UPDATE_ONLINE_LIST () {
        // Do not update online list when extension is deactivated
-       if (!EXT_IS_ACTIVE("online", true)) return;
+       if (!EXT_IS_ACTIVE('online', true)) return;
 
        // Empty session?
-       if (session_id() == "") {
+       if (session_id() == '') {
                // This is invalid here!
                debug_report_bug("Invalid session.");
        } // END - if
 
        // Initialize variables
-       $uid = 0; $rid = 0; $MEM = "N"; $ADMIN = "N";
+       $uid = 0; $rid = 0; $MEM = 'N'; $ADMIN = 'N';
 
        // Valid userid?
        if ((isUserIdSet()) && (getUserId() > 0) && (IS_MEMBER())) {
                // Is valid user
                $uid = getUserId();
-               $MEM = "Y";
+               $MEM = 'Y';
        } // END - if
 
        if (IS_ADMIN()) {
                // Is administrator
-               $ADMIN = "Y";
+               $ADMIN = 'Y';
        } // END - if
 
        if (!empty($GLOBALS['refid'])) {
@@ -99,7 +99,7 @@ WHERE sid='%s' LIMIT 1",
                                $rid,
                                $MEM,
                                $ADMIN,
-                               GET_REMOTE_ADDR(),
+                               detectRemoteAddr(),
                                session_id()
                        ), __FUNCTION__, __LINE__
                );
@@ -115,7 +115,7 @@ WHERE sid='%s' LIMIT 1",
                                $MEM,
                                $ADMIN,
                                session_id(),
-                               GET_REMOTE_ADDR()
+                               detectRemoteAddr()
                        ), __FUNCTION__, __LINE__
                );
        }