Quote:
Originally Posted by greenhybrid
In my case, it's because there is more than one instance of the article in the RSS  The bot should be able to check if the title would be a duplicate; if so, don't post.
|
That's what it does, in theory. Here's the relevant code, I think:
PHP Code:
$result_threads = $DB_site->query("
SELECT title
FROM articlebot_rss_cache
WHERE dateline >= $timecut
");
while ($thread = $DB_site->fetch_array($result_threads))
{
$threads[] = trim($thread['title']);
}
By any chance, are the articles that are being duplicated in your installation only those that have a long title (at least longer than the others?) I'm trying to see what the duplicated threads have in common. On mine, it seems to be only the articles with the longest titles.