Handle group names with special chars from thread.php to overboard.php.

This commit is contained in:
Retro_Guy 2023-12-23 12:31:14 -07:00
parent c4c6e8570a
commit 077f68754a
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ if ((! function_exists("npreg_group_has_read_access") || npreg_group_has_read_ac
if (isset($overboard) && ($overboard == true)) {
echo '<td>';
echo '<form action="overboard.php">';
echo '<input type="hidden" name="thisgroup" value="' . _rawurlencode($group) . '"/>';
echo '<input type="hidden" name="thisgroup" value="' . urlencode($group) . '"/>';
echo '<button class="np_button_link" type="submit">' . $text_thread["button_latest"] . '</button>';
echo '</form>';
echo '</td>';