X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-sub_points.php;h=94f4f9ded805bb57164edfe8f720aa0cb8ef9fd5;hp=57123d9487eaae15debe4d27b1ae65af8ba10784;hb=3afdce4fe00b4af570122ce7b8158ced44aec7d3;hpb=7b0f17cd637e388049d2167811e4332cec1e979b diff --git a/inc/modules/admin/what-sub_points.php b/inc/modules/admin/what-sub_points.php index 57123d9487..94f4f9ded8 100644 --- a/inc/modules/admin/what-sub_points.php +++ b/inc/modules/admin/what-sub_points.php @@ -54,9 +54,9 @@ if (REQUEST_GET('uid') == "all") { define('__POINTS_VALUE', REQUEST_POST('points')); // Is the form sent? - if ((IS_FORM_SENT()) && (REQUEST_POST('points') > 0)) { + if ((isFormSent()) && (REQUEST_POST('points') > 0)) { $result_main = SQL_QUERY("SELECT userid, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE `status`='CONFIRMED' ORDER BY `userid` ASC", - __FILE__, __LINE__); + __FILE__, __LINE__); while ($content = SQL_FETCHARRAY($result_main)) { // Ok, add points to used points and send an email to him... SUB_POINTS("admin_all", $content['userid'], REQUEST_POST('points')); @@ -82,12 +82,12 @@ if (REQUEST_GET('uid') == "all") { } elseif (REQUEST_ISSET_GET('uid')) { // User ID found in URL so we use this give him some credits $result = SQL_QUERY_ESC("SELECT surname, family, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s AND `status`='CONFIRMED' LIMIT 1", - array(bigintval(REQUEST_GET('uid'))),__FILE__, __LINE__); + array(bigintval(REQUEST_GET('uid'))),__FILE__, __LINE__); if (SQL_NUMROWS($result) == 1) { // Selected user does exist $content = SQL_FETCHARRAY($result); - if ((IS_FORM_SENT()) && (REQUEST_ISSET_POST(('points')))) { + if ((isFormSent()) && (REQUEST_ISSET_POST(('points')))) { // Ok, add to used points and send an email to him... SUB_POINTS("admin_single", bigintval(REQUEST_GET('uid')), REQUEST_POST('points'));