ZF-5903: Zend_Feed::findFeeds should return uri of found feeds
Description
There is no way to get the uri of the found feeds, this patch adds that functionality:
Index: library/Zend/Feed.php
===================================================================
--- library/Zend/Feed.php (Revision 14152)
+++ library/Zend/Feed.php (Arbeitskopie)
@@ -355,7 +355,7 @@
} catch (Exception $e) {
continue;
}
- $feeds[] = $feed;
+ $feeds[$uri->getUri()] = $feed;
}
}
I'm not sure if such a change is possible - if not another solution would be nice.
Comments
Posted by Pádraic Brady (padraic) on 2009-09-18T14:01:20.000+0000
Added in r18289