Quote:
Originally Posted by lierduh
It is possible your news server changed your organization to a default one. Please check the header of the messages posted from your forums. You should be able to check with your normal news reader, failing that, use Google.
The original script only checks the useragent. The reason I added the organization check is if two forums are using the same news server with the same useagent, then the messages posted from the fellow forums will be skipped! I can add an option to disable organization check with the next version. Weekend is coming...  In the meantime, find:
Code:
if ($message['user-agent'] == $settings['useragent'] AND
$message['organization'] == $settings['organization']) {
and replace it with:
if ($message['user-agent'] == $settings['useragent']) {
|
I have the same problem. Forum pulls the posts made to it back into the topic so there is double posts..
{I don't find if ($message['user-agent'] == $settings['useragent'] AND
$message['organization'] == $settings['organization']) {
Where is it ?