encode group name for link (Back) after posting to avoid issues with certain chars in group names.

This commit is contained in:
Retro_Guy 2024-07-16 04:51:33 -07:00
parent b8bbd09f93
commit a5b29b148e
1 changed files with 1 additions and 1 deletions

View File

@ -323,7 +323,7 @@ if ($type == "post") {
echo 'Please wait ' . round($wait) . ' minutes before posting again.<br />';
}
}
echo '<p><a href="' . $file_thread . '?group=' . $returngroup . '">Back</a></p>';
echo '<p><a href="' . $file_thread . '?group=' . urlencode($returngroup) . '">Back</a></p>';
} else {
// article not accepted by the newsserver
$type = "retry";