would you believe a comparison was reversed?

orig_fof
steveminutillo 2007-06-20 03:04:05 +00:00
parent 309d876514
commit 6f2b3c3fea
1 changed files with 3 additions and 1 deletions

View File

@ -25,9 +25,11 @@ $fof_admin_prefs = unserialize($row['user_prefs']);
$result = fof_db_get_feeds();
$feeds = array();
while($feed = fof_db_get_row($result))
{
if((time() - $feed["feed_cache_date"]) > ($fof_admin_prefs["autotimeout"] * 60))
if((time() - $feed["feed_cache_date"]) < ($fof_admin_prefs["autotimeout"] * 60))
{
$feeds[] = $feed;
}