Commit: 5b83dd917e24c369620fdfa75ff6c641675899af

Author: gwoo | Date: 2010-02-18 00:00:43 -0800
updating Set usage in Feed model
diff --git a/models/Feed.php b/models/Feed.php index 0f48c74..67bdca1 100644 --- a/models/Feed.php +++ b/models/Feed.php @@ -132,7 +132,7 @@ class Feed extends \lithium\core\StaticObject { */ public static function read($url) { $xml = @simplexml_load_file($url); - $xml = Set::reverse($xml); + $xml = Set::to('array', $xml); return $xml; }