Skip to content
Snippets Groups Projects
Commit b16139af authored by Andreas Gohr's avatar Andreas Gohr
Browse files

tiny compatibility fix for FeedParser

This should make older plugins working with a SimplePie Beta wor with Dokuwiki's
current SimplePie version

darcs-hash:20071015121248-7ad00-08a8be1f16649626cada3135e9d18c872689eed8.gz
parent b6344591
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,13 @@ class FeedParser extends SimplePie {
$this->enable_cache(false);
$this->set_file_class('FeedParser_File');
}
/**
* Backward compatibility for older plugins
*/
function feed_url($url){
$this->set_feed_url($url);
}
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment