Issue Details (XML | Word | Printable)

Key: ZF-5903
Type: Improvement Improvement
Status: Resolved Resolved
Resolution: Fixed
Priority: Minor Minor
Assignee: Pádraic Brady
Reporter: Niko Sams
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
Google issue summary
Zend Framework

Zend_Feed::findFeeds should return uri of found feeds

Created: 27/Feb/09 02:20 AM   Updated: 18/Sep/09 02:01 PM   Resolved: 18/Sep/09 02:01 PM
Component/s: Zend_Feed
Affects Version/s: 1.7.5
Fix Version/s: 1.9.3

Time Tracking:
Not Specified


 Description  « Hide

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.



Pádraic Brady added a comment - 18/Sep/09 02:01 PM

Added in r18289