Show
Ignore:
Timestamp:
11/24/06 16:23:35 (2 years ago)
Author:
mdodoo
Message:

Attempted sync with trunk through "diff -r." Ignored the internationalized langugage files because i was afraid of messing something up.

It is 10:30 am. I should get some sleep.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/multiuser/extlib/rss_fetch.inc

    r1164 r1639  
    5050// Not fetched because age < MAGPIE_CACHE_AGE 
    5151define ('MAGPIE_FEED_ORIGIN_NOT_FETCHED', 64); 
     52// 403 Forbidden 
     53define ('MAGPIE_FEED_ORIGIN_HTTP_403', 128); 
    5254 
    5355/* 
     
    236238            if (is_object($resp) && isset($resp->status)) { 
    237239                switch ($resp->status) { 
     240        case '403': 
     241            $rss -> rss_origin |= MAGPIE_FEED_ORIGIN_HTTP_403; 
     242            break; 
    238243                case '404': 
    239244                        $rss -> rss_origin |= MAGPIE_FEED_ORIGIN_HTTP_404;