]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/online_functions.php
Code cosmetics applied
[mailer.git] / inc / libs / online_functions.php
index 3d8578fc8443a47fa64efd2a290f238864980609..7d1eb61339e95b7faec89c03b4371c98c7a259c4 100644 (file)
@@ -75,7 +75,7 @@ function FILTER_UPDATE_ONLINE_LIST () {
 
        // Now search for the user
        $result = SQL_QUERY_ESC("SELECT timestamp FROM `{!_MYSQL_PREFIX!}_online` WHERE sid='%s' LIMIT 1",
-               array(session_id()), __FUNCTION__, __LINE__);
+       array(session_id()), __FUNCTION__, __LINE__);
 
        // Entry found?
        if (SQL_NUMROWS($result) == 1) {
@@ -91,32 +91,32 @@ is_admin='%s',
 timestamp=UNIX_TIMESTAMP(),
 ip='%s'
 WHERE sid='%s' LIMIT 1",
-                       array(
-                               $GLOBALS['module'],
-                               $GLOBALS['action'],
-                               $GLOBALS['what'],
-                               $uid,
-                               $rid,
-                               $MEM,
-                               $ADMIN,
-                               detectRemoteAddr(),
-                               session_id()
-                       ), __FUNCTION__, __LINE__
+               array(
+               $GLOBALS['module'],
+               $GLOBALS['action'],
+               $GLOBALS['what'],
+               $uid,
+               $rid,
+               $MEM,
+               $ADMIN,
+               detectRemoteAddr(),
+               session_id()
+               ), __FUNCTION__, __LINE__
                );
        } else {
                // No entry does exists so we simply add it!
                SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_online` (module, action, what, userid, refid, is_member, is_admin, timestamp, sid, ip) VALUES ('%s','%s','%s', %s, %s, '%s','%s', UNIX_TIMESTAMP(), '%s','%s')",
-                       array(
-                               $GLOBALS['module'],
-                               $GLOBALS['action'],
-                               $GLOBALS['what'],
-                               $uid,
-                               $rid,
-                               $MEM,
-                               $ADMIN,
-                               session_id(),
-                               detectRemoteAddr()
-                       ), __FUNCTION__, __LINE__
+               array(
+               $GLOBALS['module'],
+               $GLOBALS['action'],
+               $GLOBALS['what'],
+               $uid,
+               $rid,
+               $MEM,
+               $ADMIN,
+               session_id(),
+               detectRemoteAddr()
+               ), __FUNCTION__, __LINE__
                );
        }
 
@@ -125,7 +125,7 @@ WHERE sid='%s' LIMIT 1",
 
        // Purge old entries
        SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_online` WHERE timestamp <= (UNIX_TIMESTAMP() - %s)",
-               array(getConfig('online_timeout')), __FUNCTION__, __LINE__);
+       array(getConfig('online_timeout')), __FUNCTION__, __LINE__);
 }
 
 //