diff options
author | Brion Vibber <brion@pobox.com> | 2009-11-19 20:55:38 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-11-19 21:04:21 -0800 |
commit | dd36c2de23dbdb30f333be1f9d5292d62363b0c8 (patch) | |
tree | 89eae38f77e74b51478cc2ec0c13a0ac249d75ba /plugins/FeedSub/extlib/xml-feed-parser-bug-16416.patch | |
parent | dc90e90fd2748f953a2d4750105817b41cafe43a (diff) |
Initial functional version of feed subscription plugin, currently supporting only PuSH-enabled feeds.
Diffstat (limited to 'plugins/FeedSub/extlib/xml-feed-parser-bug-16416.patch')
-rw-r--r-- | plugins/FeedSub/extlib/xml-feed-parser-bug-16416.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/FeedSub/extlib/xml-feed-parser-bug-16416.patch b/plugins/FeedSub/extlib/xml-feed-parser-bug-16416.patch new file mode 100644 index 000000000..c53bd9737 --- /dev/null +++ b/plugins/FeedSub/extlib/xml-feed-parser-bug-16416.patch @@ -0,0 +1,14 @@ +diff --git a/htdocs/lib/pear/XML/Feed/Parser/RSS2.php b/htdocs/lib/pear/XML/Feed/Parser/RSS2.php +index c5d79d1..308a4ab 100644 +--- a/htdocs/lib/pear/XML/Feed/Parser/RSS2.php ++++ b/htdocs/lib/pear/XML/Feed/Parser/RSS2.php +@@ -321,7 +321,8 @@ class XML_Feed_Parser_RSS2 extends XML_Feed_Parser_Type + */ + function getLink($offset, $attribute = 'href', $params = array()) + { +- $links = $this->model->getElementsByTagName('link'); ++ $xPath = new DOMXPath($this->model); ++ $links = $xPath->query('//link'); + + if ($links->length <= $offset) { + return false; |