- Timestamp:
- 10/19/07 19:55:51 (14 months ago)
- Files:
-
- 1 modified
-
trunk/gregarius/extlib/rss_dbcache.inc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/gregarius/extlib/rss_dbcache.inc
r1768 r1769 121 121 if (!$refreshInterval || ($refreshInterval <= 60)) { 122 122 // We should change the Gregarius UA if we allow refreshInterval to be small 123 $refreshInterval = $this->MAX_AGE;123 $refreshInterval = 60; //$this->MAX_AGE; 124 124 } 125 125 126 setProperty($cid, 'rss.config.refreshdate', 'feed', time());126 // print(time() . " " . $dateRefreshed . " " . $age . " " . $refreshInterval); 127 127 128 128 if ( $refreshInterval > $age ) { … … 131 131 } else { 132 132 // object exists but is old 133 setProperty($cid, 'rss.config.refreshdate', 'feed', time()); 133 134 return 'STALE'; 134 135 }
