Fix bug in nocem.php to properly handle all newsgroups in Newsgroups: header.

This commit is contained in:
Retro_Guy 2023-12-01 14:46:22 -07:00
parent a799624061
commit a399c66b07
1 changed files with 2 additions and 1 deletions

View File

@ -63,7 +63,8 @@ foreach ($messages as $message) {
continue;
}
if (($nocem_line[0] == '<') && $start == 1) {
$found = explode(' ', $nocem_line);
$found = preg_split("/\ |\,/", $nocem_line);
// $found = explode(' ', $nocem_line);
$i = 0;
foreach ($found as $group_item) {
if ($i == 0) {