Changeset 46422

Show
Ignore:
Timestamp:
05/17/08 04:24:05 (2 months ago)
Author:
Dr C
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • multifeedsnap/trunk/multifeedsnap.php

    r46419 r46422  
    44Plugin URI: http://www.colincaprani.com/wordpress/2008/05/multifeedsnap/ 
    55Description: Plugin for displaying multiple RSS Feeds. 
    6 Version: 1.0  
     6Version: 1.0.1  
    77Author: Colin Caprani  
    88Author URI: http://www.colincaprani.com  
     
    3333      $text = str_replace('[/feedsnap]','</feedsnap>',$text); 
    3434  $feedURL = TextBetweenArray('<feedsnap>','</feedsnap>',$text); 
    35   
     35   
     36  ini_set('user_agent', 'Anything here'); // so we can parse digg.com feeds 
     37  //  see: http://hellaleet.blogspot.com/2007/04/parsing-diggs-rss-feeds.html  
    3638  $iFeeds = count($feedURL);  // Find out how many feeds on the page 
    3739  for ($i = 0; $i < $iFeeds; $i++) 
  • multifeedsnap/trunk/readme.txt

    r46366 r46422  
    5454Richard Dawkins 
    5555[feedsnap]http://feeds.feedburner.com/richarddawkins[/feedsnap] 
     56 
     57== Version History == 
     58v1.0.1 
     59Added support for digg.com feeds using the information here: 
     60http://hellaleet.blogspot.com/2007/04/parsing-diggs-rss-feeds.html 
     61Thanks to Brad for spotting this. 
     62 
     63v1.0 
     64Initial release