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 ($row = 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 = array( 'reason' => SQL_ESCAPE(postRequestParameter('reason')), 'points' => bigintval(postRequestParameter('points')) ); // Load email template and send email away $message = loadEmailTemplate('add-points', $content, bigintval($content['userid'])); sendEmail(bigintval($content['userid']), '{--ADMIN_ADD_SUBJECT--}', $message); } // END - while // Free memory SQL_FREERESULT($result_main); // Output message loadTemplate('admin_settings_saved', false, '{--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( 'reason' => SQL_ESCAPE(postRequestParameter('reason')), 'points' => bigintval(postRequestParameter('points')) ); // Message laden $message = loadEmailTemplate('add-points', $content, bigintval(getRequestParameter('userid'))); sendEmail(bigintval(getRequestParameter('userid')), '{--ADMIN_ADD_SUBJECT--}', $message); loadTemplate('admin_settings_saved', false, '{--ADMIN_POINTS_ADDED--}'); } else { // Prepare content $content['userid'] = bigintval(getRequestParameter('userid')); // Output template loadTemplate('admin_add_points', false, $content); } } else { // User not found! loadTemplate('admin_settings_unsaved', false, getMaskedMessage('ADMIN_MEMBER_404', bigintval(getRequestParameter('userid')))); } } else { // Output selection form with all confirmed user accounts listed addMemberSelectionBox(0, true); } // [EOF] ?>