#'), array('&', '<', '>'),$comment_text); //Checks to make sure the user has privledge to enter highscores. //This query checks the user_id stored in the users cookie and in the database. //If they don't match, the comments is not entered and error message is displayed. $user_id = $userdata['user_id']; $sql = "SELECT game_highuser FROM " . GAMES_TABLE. " WHERE game_id = $game_id"; if( !($result = $db->sql_query($sql))) { message_die(GENERAL_ERROR, "Error Authenticating User", '', __LINE__, __FILE__, $sql); } $row = $db->sql_fetchrow($result); if($row['game_highuser'] != $user_id) { message_die(GENERAL_ERROR, "Error Authenticating User - Possible hack attempt!", ''); } //Enters Comment into the DB $sql = "UPDATE " . COMMENTS_TABLE . " SET comments_value = '$comment_text' WHERE game_id = $game_id"; if( !$result = $db->sql_query($sql) ) { message_die(GENERAL_ERROR, "Couldn't insert row in comments table", "", __LINE__, __FILE__, $sql); } //Comment Updated/Added Successfully go back to game header($header_location . append_sid("modules.php?name=Forums&file=games&gid=$game_id", true)); exit; } $game_id = intval($HTTP_GET_VARS['gid']); //Checks to make sure the user has privledge to enter highscores. //This query checks the user_id stored in the users cookie and in the database. //If they don't match, the comments is not entered and error message is displayed. $user_id = $userdata['user_id']; $sql = "SELECT game_highuser FROM " . GAMES_TABLE. " WHERE game_id = $game_id"; if( !($result = $db->sql_query($sql))) { message_die(GENERAL_ERROR, "Error Authenticating User", '', __LINE__, __FILE__, $sql); } $row = $db->sql_fetchrow($result); if($row['game_highuser'] != $user_id) { header($header_location . append_sid("modules.php?name=Forums&file=games&gid=$game_id", true)); exit; } //Comment submission Timeout Check $sql = "SELECT game_highdate FROM " . GAMES_TABLE. " WHERE game_id = $game_id"; if( !($result = $db->sql_query($sql))) { message_die(GENERAL_ERROR, "Error Authenticating User", '', __LINE__, __FILE__, $sql); } $row = $db->sql_fetchrow($result); //Checks the current time and time highscore was recorded. //If they are not within a minute of each other user is refreshed back to game. if( (time() - $row['game_highdate']) > 60) { header($header_location . append_sid("modules.php?name=Forums&file=games&gid=$game_id", true)); exit; } $template->set_filenames(array( 'body' => 'comments_new_body.tpl')); //Gets comments from database $sql = "SELECT g.game_id, g.game_name, c.* FROM " . GAMES_TABLE. " g LEFT JOIN " . COMMENTS_TABLE . " c ON g.game_id = c.game_id WHERE g.game_id = $game_id"; if( !($result = $db->sql_query($sql)) ) { message_die(GENERAL_ERROR, "Error retrieving comment list", '', __LINE__, __FILE__, $sql); } $row = $db->sql_fetchrow($result); $game_name = '' . $row['game_name'] . ''; $return_arcade = 'here'; $template->assign_vars(array( 'L_ARCADE_COMMENTS' => $lang['arcade_comments'], 'L_CONGRATS' => $lang['congrats'], 'L_COMMENTS_CHAMPION' => sprintf($lang['comments_champion'], $game_name), 'NAV_DESC' => '' . $lang['arcade'] . ' ' , 'GAME_ID' => $row['game_id'], 'L_NO_COMMENT' => sprintf($lang['no_comment'], $return_arcade), 'COMMENTS' => $row['comments_value'], 'S_ACTION' => append_sid("comments_new?mode=update"), )); //Gets Avatar based on user settings and other user stats $sql = "SELECT username, user_avatar_type, user_allowavatar, user_avatar FROM " . USERS_TABLE . " WHERE user_id = " . $userdata['user_id'] ; if( !($result = $db->sql_query($sql)) ) { message_die(GENERAL_ERROR, "Cannot access the users table", '', __LINE__, __FILE__, $sql); } $row = $db->sql_fetchrow($result); $user_avatar_type = $row['user_avatar_type']; $user_allowavatar = $row['user_allowavatar']; $user_avatar = $row['user_avatar']; $avatar_img = ''; if ( $user_avatar_type && $user_allowavatar ) { switch( $user_avatar_type ) { case USER_AVATAR_UPLOAD: $avatar_img = ( $board_config['allow_avatar_upload'] ) ? '' : ''; break; case USER_AVATAR_REMOTE: $avatar_img = ( $board_config['allow_avatar_remote'] ) ? '' : ''; break; case USER_AVATAR_GALLERY: $avatar_img = ( $board_config['allow_avatar_local'] ) ? '' : ''; break; } } $template->assign_vars(array( 'L_QUICK_STATS' => $lang['quick_stats'], 'USER_AVATAR' => '' . $avatar_img . '', 'USERNAME' => '' . $row['username'] . ' ', )); //Gets some user stats to display on the comment submission page $sql ="SELECT s.score_set, s.game_id, g.game_name FROM " . SCORES_TABLE. " s LEFT JOIN " . USERS_TABLE. " u ON s.user_id = u.user_id LEFT JOIN " . GAMES_TABLE. " g ON s.game_id = g.game_id WHERE s.user_id = " . $userdata['user_id'] . " ORDER BY score_set DESC LIMIT 1"; if( !($result = $db->sql_query($sql)) ) { message_die(GENERAL_ERROR, "Cannot access user stats to display", '', __LINE__, __FILE__, $sql); } $row = $db->sql_fetchrow($result); $times_played = $row['score_set']; $fav_game_name = '' . $row['game_name'] . ''; $sql="SELECT * FROM " .GAMES_TABLE ." WHERE game_highuser = " . $userdata['user_id'] . " ORDER BY game_highdate DESC"; if( !($result = $db->sql_query($sql)) ) { message_die(GENERAL_ERROR, "Cannot access last high score data", '', __LINE__, __FILE__, $sql); } $score_count = $db->sql_numrows( $result ); //Gets the number of highscores for the current user $row = $db->sql_fetchrow($result); $highscore_date = create_date( $board_config['default_dateformat'] , $row['game_highdate'] , $board_config['board_timezone'] ); $highscore_game_name = '' . $row['game_name'] . ''; $template->assign_vars(array( 'L_QUICK_STATS_MESSAGE' => sprintf($lang['quick_stats_message'], $score_count, $fav_game_name, $times_played, $highscore_date, $highscore_game_name), )); // // Generate the page end // $template->pparse('body'); include("includes/page_tail.php"); ?>