X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Ffilters.php;h=83438eab3ecbb3587dc0b9307c2ce7ac5d5d6c78;hp=6f213c8b65515f4f14a070bc1b705b62aacf2cca;hb=48b997e125d13e5184281449feb9f4c8caf48e56;hpb=ccc4a69ce9b17aa8d7b1554a3b2b017db091821b diff --git a/inc/filters.php b/inc/filters.php index 6f213c8b65..83438eab3e 100644 --- a/inc/filters.php +++ b/inc/filters.php @@ -261,7 +261,8 @@ function FILTER_FLUSH_FILTERS () { } // END - if // Nothing is added/remove by default - $inserted = 0; $removed = 0; + $inserted = 0; + $removed = 0; // Prepare SQL queries $insertSQL = "INSERT INTO `{!_MYSQL_PREFIX!}_filters` (`filter_name`,`filter_function`,`filter_active`) VALUES"; @@ -459,7 +460,7 @@ function FILTER_UPDATE_LOGIN_DATA () { // Load last module and last online time $result = SQL_QUERY_ESC("SELECT last_module, last_online FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1", - array(getUserId()), __FUNCTION__, __LINE__); + array(getUserId()), __FUNCTION__, __LINE__); // Entry found? if (SQL_NUMROWS($result) == 1) { @@ -483,7 +484,7 @@ function FILTER_UPDATE_LOGIN_DATA () { // Update last module / online time SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET `last_module`='%s', last_online=UNIX_TIMESTAMP(), REMOTE_ADDR='%s' WHERE userid=%s LIMIT 1", - array($GLOBALS['what'], detectRemoteAddr(), getUserId()), __FUNCTION__, __LINE__); + array($GLOBALS['what'], detectRemoteAddr(), getUserId()), __FUNCTION__, __LINE__); } else { // Destroy session, we cannot update! destroyUserSession();