I'm not sure if this was the fix YET.. but I did notice something about code..
Code:
// filter out the old items
while($rss_thread_data = $DB_site->fetch_array($rss_query)) {
for($j = count($rss_allItems) - 1; $j >= 0; $j--) {
if($rss_thread_data[title] == $rss_allItems[$j][TITLE] &&
$rss_thread_data[rss_date] == $rss_allItems[$j]['pubDate']) {
$rss_allItems[$j][OLD] = true;
}
}
}
Around pubDate there was NO ' ' so I put them in.. seems to be working.. but I'm still testing.. I'll post soon.. if you already know (cause your a php pro) that this isn't the solution.. please tell me.. cause I'm definately NOT a php pro..
Aceman
***UPDATE*** This did NOT fix my duplication problem. I'm getting ALOT of duplicated threads.. help me!