Fix bug in nocem.php to properly handle all newsgroups in Newsgroups: header.
This commit is contained in:
parent
a799624061
commit
a399c66b07
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue