X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_points.php;h=0c60e88fe5443a62958a637fd90fe6cb2e0c8101;hp=3ef48975ae67b96791e23fad8a030e22c7739790;hb=0f3a135204757cc8750262871c8e62c42300acb4;hpb=db0c6702086eea2c44d0aae1702dc2e77a0afc4e;ds=sidebyside diff --git a/inc/modules/admin/what-config_points.php b/inc/modules/admin/what-config_points.php index 3ef48975ae..0c60e88fe5 100644 --- a/inc/modules/admin/what-config_points.php +++ b/inc/modules/admin/what-config_points.php @@ -77,10 +77,9 @@ if (isFormSent()) { break; case 'ref': - switch (getRequestParameter('do')) - { + switch (getRequestParameter('do')) { case 'add': - addSql("INSERT INTO `{?_MYSQL_PREFIX?}_refdepths` (`level`, `percents`) VALUES ('".postRequestParameter('level')."','".postRequestParameter('percents')."')"); + addSql("INSERT INTO `{?_MYSQL_PREFIX?}_refdepths` (`level`,`percents`) VALUES ('".bigintval(postRequestParameter('level'))."','".bigintval(postRequestParameter('percents'))."')"); break; case 'edit': // Change entries @@ -94,7 +93,7 @@ if (isFormSent()) { // Update entry SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_refdepths` SET `level`=%s, `percents`=%s WHERE `id`=%s LIMIT 1", array(bigintval($value), convertCommaToDot(postRequestParameter('percents', $id)), $id), __FILE__, __LINE__); - } + } // END - foreach $message = '{--ADMIN_REFERAL_DEPTHS_SAVED--}'; break; @@ -102,10 +101,10 @@ if (isFormSent()) { foreach (postRequestParameter('id') as $id => $value) { SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1", array(bigintval($id)), __FILE__, __LINE__); - } + } // END - foreach $message = '{--ADMIN_REFERAL_DEPTHS_DELETED--}'; break; - } + } // END - switch // Update cache file // @TODO Rewrite this to a filter @@ -117,8 +116,8 @@ if (isFormSent()) { case 'settings': $REF = bigintval(postRequestParameter('ref_payout')); updateConfiguration( - array('allow_direct_pay', 'reg_points_mode', 'ref_payout'), - array(postRequestParameter('allow_direct_pay'), postRequestParameter('reg_points_mode'), $REF) + array('allow_direct_pay', 'ref_payout'), + array(postRequestParameter('allow_direct_pay'), $REF) ); if ((getConfig('ref_payout') == '0') && (postRequestParameter('ref_payout') > 0)) { // Update account's ref_payout for "must-confirm" @@ -136,7 +135,7 @@ WHERE if ((isSqlsValid()) && (isSqlsValid())) { if (strpos($GLOBALS['sqls'][0], 'INSERT') > -1) { - $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `level`='%s' LIMIT 1", + $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `level`=%s LIMIT 1", array(bigintval(postRequestParameter('level'))), __FILE__, __LINE__); SQL_FREERESULT($result); } // END - if @@ -173,12 +172,6 @@ WHERE $content[$entry . '_' . strtolower(getConfig($entry))] = ' checked="checked"'; } // END - foreach - // One-time referal bonus add-mode - foreach (array('reg_points_mode_ref','reg_points_mode_direct') as $entry) { - $content[$entry] = ''; - } // END - foreach - $content['reg_points_mode_' . strtolower(getConfig('reg_points_mode'))] = ' checked="checked"'; - // Load template loadTemplate('admin_config_point_settings', false, $content); } elseif (getRequestParameter('sub') == 'ref') { @@ -187,7 +180,7 @@ WHERE // Delete entries $OUT = ''; foreach (postRequestParameter('sel') as $id => $value) { - $result = SQL_QUERY_ESC("SELECT `id`, `level`, `percents` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1", + $result = SQL_QUERY_ESC("SELECT `id`,`level`,`percents` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1", array(bigintval($id)), __FILE__, __LINE__); $content = SQL_FETCHARRAY($result); SQL_FREERESULT($result); @@ -202,7 +195,7 @@ WHERE // Edit entries $OUT = ''; foreach (postRequestParameter('sel') as $id => $value) { - $result = SQL_QUERY_ESC("SELECT `id`, `level`, `percents` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1", + $result = SQL_QUERY_ESC("SELECT `id`,`level`,`percents` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1", array(bigintval($id)), __FILE__, __LINE__); $content = SQL_FETCHARRAY($result); SQL_FREERESULT($result); @@ -215,7 +208,7 @@ WHERE loadTemplate('admin_edit_reflevel', false, $OUT); } else { // Referal levels - $result = SQL_QUERY("SELECT `id`, `level`, `percents` FROM `{?_MYSQL_PREFIX?}_refdepths` ORDER BY `level` ASC", __FILE__, __LINE__); + $result = SQL_QUERY("SELECT `id`,`level`,`percents` FROM `{?_MYSQL_PREFIX?}_refdepths` ORDER BY `level` ASC", __FILE__, __LINE__); if (!SQL_HASZERONUMS($result)) { // Make referal levels editable and deletable $OUT = '';