X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_rallyes.php;h=e8cefebfcab7774b1fdf3810ef9f86c23742ff07;hp=1ddccd1cac9dd9c42f6a889a211099d6085e49ca;hb=4cec044b57773e28423261c71f918f3e22ca8a75;hpb=88624bbf36f5b3cb5ef796a662853a6d38c4ce64 diff --git a/inc/modules/admin/what-list_rallyes.php b/inc/modules/admin/what-list_rallyes.php index 1ddccd1cac..e8cefebfca 100644 --- a/inc/modules/admin/what-list_rallyes.php +++ b/inc/modules/admin/what-list_rallyes.php @@ -1,7 +1,7 @@ 0) { + if (countPostSelection() > 0) { // Init SQLs initSqls(); @@ -113,9 +112,9 @@ if (isGetRequestElementSet('rallye')) { // Remove selected rallye entirely... addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_data` WHERE `id`=%s LIMIT 1", array(bigintval($id)), __FILE__, __LINE__, false)); - addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_prices` WHERE rallye_id=%s", + addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_prices` WHERE `rallye_id`=%s", array(bigintval($id)), __FILE__, __LINE__, false)); - addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_users` WHERE rallye_id=%s", + addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_users` WHERE `rallye_id`=%s", array(bigintval($id)), __FILE__, __LINE__, false)); } // END - foreach @@ -130,8 +129,7 @@ if (isGetRequestElementSet('rallye')) { } } elseif (isPostRequestElementSet('change')) { // Change rallye - $SEL = countSelection(postRequestElement('title')); - if ($SEL > 0) { + if (countSelection(postRequestElement('title')) > 0) { // Init SQLs initSqls(); @@ -180,8 +178,7 @@ LIMIT 1", if (isPostRequestElementSet('edit')) { // Check for selections - $SEL = countPostSelection(); - if ($SEL > 0) { + if (countPostSelection() > 0) { // Make all selected and deactivated rallyes editable $OUT = ''; $SW = 2; foreach (postRequestElement('sel') as $id => $selected) { @@ -250,23 +247,17 @@ LIMIT 1", $br = ''; // Output row - if (($row['curr_points'] > 0) && ($cnt > 0)) { $bl = ""; $br = ""; } - if (($row['refs'] > 0) || ($cnt > 0)) { - // Insert link to referal list - //* DEBUG: */ outputHtml('-'.$row['userid'].'/'.$cnt.'/'.$row['refs']."-
"); - $cnt = generateUserProfileLink($row['userid'], $cnt, 'list_refs'); - $row['refs'] = generateUserProfileLink($row['userid'], $row['refs'], 'list_refs'); - } // END - if + if (($row['curr_points'] > 0) && ($cnt > 0)) { $bl = ''; $br = ''; } // Get user points $points = countSumTotalData($row['userid'], 'user_points', 'points', 'userid', false, " AND `ref_depth`=1 LIMIT 1"); //* DEBUG: */ outputHtml(basename(__FILE__).":userid={$row['userid']},points={$points},opoints={$row['curr_points']}
"); // Prepare content - // @TODO Rewritings: userid->userid,opoints->curr_points,old->refs in template + // @TODO Rewritings: opoints->curr_points,old->refs in template $row = array( 'sw' => $SW , - 'userid' => $row['userid'], + 'userid' => $row['userid'], 'bold_l' => $bl , 'bold_r' => $br , 'old' => $row['refs'], @@ -327,7 +318,7 @@ ORDER BY $row = array( 'select' => "", 'admin_id' => $data['admin_id'], - 'email_link' => generateEmailLink($data['admin_id']), + 'admin_link' => generateAdminLink($data['admin_id']), 'login' => $data['login'], 'id' => $data['id'], 'sw' => $SW,