X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fdaily%2Fdaily_user_subids.php;h=18125af10d59abbf07d5b5de1695569b8ce13393;hb=99966a712b3b3d8b521524762e153353d1d20bd4;hp=84df36e3f0f05bc63853bb2ed916691dab96a895;hpb=094f3a6af3b901020395eafee16b3b5e151f1137;p=mailer.git diff --git a/inc/daily/daily_user_subids.php b/inc/daily/daily_user_subids.php index 84df36e3f0..18125af10d 100644 --- a/inc/daily/daily_user_subids.php +++ b/inc/daily/daily_user_subids.php @@ -10,13 +10,8 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Dinge, die beim taeglichen Reset erledigt werden * * -------------------------------------------------------------------- * - * $Revision:: $ * - * $Date:: $ * - * $Tag:: 0.2.1-FINAL $ * - * $Author:: $ * - * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -38,7 +33,7 @@ // Some security stuff... if (!defined('__SECURITY')) { die(); -} elseif ((!isHtmlOutputMode()) || (!isResetModeEnabled())) { +} elseif ((!isHtmlOutputMode()) || (!isDailyResetEnabled())) { // Do not execute when script is in non-HTML mode or no daily reset return; } elseif (!isExtensionInstalledAndNewer('user', '0.5.8')) { @@ -52,16 +47,16 @@ if (!defined('__SECURITY')) { // Is auto-purging activated and configured correctly? if ((isApSubidsEnabled()) && (getApSubidsSince() > 0)) { // Start purging - SQL_QUERY('DELETE LOW_PRIORITY FROM + sqlQuery('DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_subid_log` WHERE (UNIX_TIMESTAMP() - UNIX_TIMESTAMP(`entry_added`)) >= {?ap_subids_since?}', __FILE__, __LINE__); // Are some entries deleted? - if (SQL_AFFECTEDROWS() > 0) { + if (sqlAffectedRows() > 0) { // Okay, then send an email to the admin - sendAdminNotification('{--ADMIN_PURGE_USER_SUBID_LOG_SUBJECT--}', 'admin_purge_user_subid_log', SQL_AFFECTEDROWS()); + sendAdminNotification('{--ADMIN_PURGE_USER_SUBID_LOG_SUBJECT--}', 'admin_purge_user_subid_log', sqlAffectedRows()); } // END - if } // END - if