Update call to message_post in rss-feeds.php to allow for recent changes in function.

This commit is contained in:
Retro_Guy 2024-02-10 14:57:09 -07:00
parent 7ed204fc03
commit 64ff0baeaa
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ foreach ($rssfiles as $rssfile) {
print_r($xml);
echo $body;
} else {
echo message_post($RSS['message_subject'], $RSS['postfrom'], $RSS['newsgroup'], null, $body, null, null, null, $followupto) . "\n";
echo message_post($RSS['message_subject'], $RSS['postfrom'], $RSS['newsgroup'], null, $body, null, null, null, null, $followupto) . "\n";
touch($spooldir . '/' . $rssfile . '-rss-timer');
}
}