• Resolved casabsolute

    (@casabsolute)


    FYI – Delicious has updated their Feed URLs.

    To fix the delicious feeds –

    wp-lifestream2/extensions/delicious/extension.inc.php

    change function get_url()

    from

    $url = 'http://del.icio.us/rss/'.$this->get_option('username');
    		if ($this->get_option('filter_tag')) $url .= '/'.$this->get_option('filter_tag');
    		return $url;

    to

    $url = 'http://feeds.delicious.com/v2/rss/'.$this->get_option('username');
    		if ($this->get_option('filter_tag')) $url .= '/'.$this->get_option('filter_tag');
    		return $url;

    and change function get_public_url

    from

    return 'http://del.icio.us/'.$this->get_option('username');

    to

    return 'http://delicious.com/'.$this->get_option('username');

    http://wordpress.org/extend/plugins/wp-lifestream2/

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: WP-Lifestream2] Fix for Delicious Feeds’ is closed to new replies.