diff options
author | friendica <info@friendica.com> | 2012-03-01 18:49:23 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-01 18:49:23 -0800 |
commit | 58e3372b23b286334e5195b1b8f70448715ed493 (patch) | |
tree | 136bd719ce174189a5391d91f8c3de100133bef9 /include | |
parent | bd2c8c92f1b30d8f811bd4aab0fe3a2c5496ec61 (diff) | |
download | volse-hubzilla-58e3372b23b286334e5195b1b8f70448715ed493.tar.gz volse-hubzilla-58e3372b23b286334e5195b1b8f70448715ed493.tar.bz2 volse-hubzilla-58e3372b23b286334e5195b1b8f70448715ed493.zip |
probe for very old (0.97 or 1.0) RSS feed with an incorrect or generic content-type
Diffstat (limited to 'include')
-rwxr-xr-x | include/Scrape.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/Scrape.php b/include/Scrape.php index 4c4ad3cdb..8344aa737 100755 --- a/include/Scrape.php +++ b/include/Scrape.php @@ -255,6 +255,11 @@ function scrape_feed($url) { } } } + // perhaps an RSS version 1 feed with a generic or incorrect content-type? + if(stristr($s,'</item>')) { + $ret['feed_rss'] = $url; + return $ret; + } } try { |