X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fdaily%2Fdaily_holiday.php;h=1470a279832c8b22a3c3a2591fddfe36144aa3c0;hb=35fd597b272983427fd88f541ea55642e0b42c9e;hp=b72ac9c9eece9e6b43f6a16e216ea0d3272d8f3d;hpb=84dd2fecd5b013cf6f4c4e7dee8b0d470b6a5f5c;p=mailer.git diff --git a/inc/daily/daily_holiday.php b/inc/daily/daily_holiday.php index b72ac9c9ee..1470a27983 100644 --- a/inc/daily/daily_holiday.php +++ b/inc/daily/daily_holiday.php @@ -16,7 +16,7 @@ * $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 * @@ -50,7 +50,7 @@ if (!defined('__SECURITY')) { //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset started.'); // Check for holidays we need to enable and send email to user -$result_main = SQL_QUERY("SELECT +$result_main = sqlQuery("SELECT `userid`, `holiday_activated` FROM @@ -64,14 +64,14 @@ ORDER BY __FILE__, __LINE__); // Entries found? -if (!SQL_HASZERONUMS($result_main)) { +if (!ifSqlHasZeroNums($result_main)) { // Init SQLs initSqls(); // We have found at least one useraccount so let's check it... - while ($content = SQL_FETCHARRAY($result_main)) { + while ($content = sqlFetchArray($result_main)) { // Check if his holiday can be activated - $result_holiday = SQL_QUERY_ESC("SELECT + $result_holiday = sqlQueryEscaped("SELECT `holiday_start`, `holiday_end` FROM @@ -84,9 +84,9 @@ LIMIT 1", array(bigintval($content['userid'])), __FILE__, __LINE__); // Is there an entry? - if (SQL_NUMROWS($result_holiday) == 1) { + if (sqlNumRows($result_holiday) == 1) { // Okay, this user can be send away to holiday... - $content = merge_array($content, SQL_FETCHARRAY($result_holiday)); + $content = merge_array($content, sqlFetchArray($result_holiday)); // Prepare all data for the template $content = merge_array($content, array( @@ -100,7 +100,7 @@ LIMIT 1", sendEmail($content['userid'], '{--MEMBER_HOLIDAY_ACTIVATED_SUBJECT--}', $message); // Update account - addSql(SQL_QUERY_ESC("UPDATE + addSql(sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `holiday_active`='Y' @@ -111,7 +111,7 @@ LIMIT 1", } // END - if // Free memory - SQL_FREERESULT($result_holiday); + sqlFreeResult($result_holiday); } // END - while // Run all SQLs @@ -119,7 +119,7 @@ LIMIT 1", } // END - if // Free memory -SQL_FREERESULT($result_main); +sqlFreeResult($result_main); // Stop currently activated holidays stopHolidays();