0)) { // Add points to all accounts $content['points'] = bigintval(postRequestParameter('points')); // Load userid $result_main = SQL_QUERY("SELECT userid, email FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `status`='CONFIRMED' ORDER BY `userid` ASC", __FILE__, __LINE__); while ($row = SQL_FETCHARRAY($result_main)) { // Merge both arrays $content = merge_array($content, $row); // Ok, add points to used points and send an email to him... subtractPoints('admin_all', $content['userid'], postRequestParameter('points')); // Add more content $content['text'] = SQL_ESCAPE(postRequestParameter('reason')); $content['points'] = bigintval(postRequestParameter('points')); // Load message and send it away $message = loadEmailTemplate('sub-points', $content, bigintval($content['userid'])); sendEmail($content['email'], getMessage('ADMIN_SUB_SUBJ'), $message); } // END - while // Free memory SQL_FREERESULT($result_main); // Output message loadTemplate('admin_settings_saved', false, getMessage('ADMIN_ALL_POINTS_SUBTRACTED')); } else { // Display form add points loadTemplate('admin_sub_points_all'); } } elseif (isGetRequestParameterSet('userid')) { // User id found in URL so we use this give him some credits if (fetchUserData(getRequestParameter('userid'))) { // Selected user does exist $content = getUserDataArray(); if ((isFormSent()) && (isPostRequestParameterSet('points'))) { // Ok, add to used points and send an email to him... subtractPoints('admin_single', bigintval(getRequestParameter('userid')), postRequestParameter('points')); // Add more content $content['text'] = SQL_ESCAPE(postRequestParameter('reason')); $content['points'] = bigintval(postRequestParameter('points')); // Load email and send it away $message = loadEmailTemplate('sub-points', $content, bigintval(getRequestParameter('userid'))); sendEmail($content['email'], getMessage('ADMIN_SUB_SUBJ'), $message); // Output message loadTemplate('admin_settings_saved', false, getMessage('ADMIN_POINTS_SUBTRACTED')); } else { // Prepare content $content['user'] = '' . $content['surname'] . ' ' . $content['family'] . ''; $content['userid'] = bigintval(getRequestParameter('userid')); // Load form loadTemplate('admin_sub_points', false, $content); } } else { // User not found! loadTemplate('admin_settings_saved', false, '
' . getMaskedMessage('ADMIN_MEMBER_404', bigintval(getRequestParameter('userid'))) . '
'); } } else { // Output selection form with all confirmed user accounts listed addMemberSelectionBox(0, true); } // [EOF] ?>