Changeset 1639 for branches/multiuser/extlib
- Timestamp:
- 11/24/06 16:23:35 (2 years ago)
- Files:
-
- 1 modified
-
branches/multiuser/extlib/rss_fetch.inc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/multiuser/extlib/rss_fetch.inc
r1164 r1639 50 50 // Not fetched because age < MAGPIE_CACHE_AGE 51 51 define ('MAGPIE_FEED_ORIGIN_NOT_FETCHED', 64); 52 // 403 Forbidden 53 define ('MAGPIE_FEED_ORIGIN_HTTP_403', 128); 52 54 53 55 /* … … 236 238 if (is_object($resp) && isset($resp->status)) { 237 239 switch ($resp->status) { 240 case '403': 241 $rss -> rss_origin |= MAGPIE_FEED_ORIGIN_HTTP_403; 242 break; 238 243 case '404': 239 244 $rss -> rss_origin |= MAGPIE_FEED_ORIGIN_HTTP_404;
