0)) { // Points $content['points'] = bigintval(postRequestParameter('points')); // Select all users $result_main = SQL_QUERY("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `status`='CONFIRMED' ORDER BY `userid` ASC", __FILE__, __LINE__); // Process all entries while ($content = merge_array($content, SQL_FETCHARRAY($result_main))) { // Remove depth to prevent booking errors. This is a bad coding // practice, thats also why we need to write this project from // scratch... $GLOBALS['ref_level'] = -1; // Ok, add points and send an email to him... addPointsDirectly('admin_all', $content['userid'], bigintval(postRequestParameter('points'))); // Prepare content $content['text'] = SQL_ESCAPE(postRequestParameter('reason')); $content['points'] = bigintval(postRequestParameter('points')); // Load email template and send email away $message = loadEmailTemplate('add-points', $content, bigintval($content['userid'])); sendEmail(bigintval($content['userid']), getMessage('ADMIN_ADD_SUBJ'), $message); } // END - while // Free memory SQL_FREERESULT($result_main); // Output message loadTemplate('admin_settings_saved', false, getMessage('ADMIN_ALL_POINTS_ADDED')); } else { // Display form add points loadTemplate('admin_add_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'))) { // Add points and send an email to him... addPointsDirectly('admin_single', bigintval(getRequestParameter('userid')), bigintval(postRequestParameter('points'))); // Prepare content $content = array( 'text' => SQL_ESCAPE(postRequestParameter('reason')), 'points' => bigintval(postRequestParameter('points')) ); // Message laden $message = loadEmailTemplate('add-points', $content, bigintval(getRequestParameter('userid'))); sendEmail(bigintval(getRequestParameter('userid')), getMessage('ADMIN_ADD_SUBJ'), $message); loadTemplate('admin_settings_saved', false, getMessage('ADMIN_POINTS_ADDED')); } else { // Prepare content $content['user'] = '' . $content['surname'] . ' ' . $content['family'] . ''; $content['userid'] = bigintval(getRequestParameter('userid')); // Output template loadTemplate('admin_add_points', false, $content); } } else { // User not found! loadTemplate('admin_settings_saved', false, '
' . getMaskedMessage('ADMIN_MEMBER_404', getRequestParameter('userid')) . '
'); } } else { // Output selection form with all confirmed user accounts listed addMemberSelectionBox(0, true); } // [EOF] ?>