diff options
author | Dave Tosh <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-06-02 12:25:27 +0000 |
---|---|---|
committer | Dave Tosh <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-06-02 12:25:27 +0000 |
commit | db58ab7e51e539ec3172762d5c781338d58ad4b8 (patch) | |
tree | aa7bf8756430b302d438c3d8aff40fe0295c75d6 /views/rss | |
parent | bc0819d6175633465d111557b7ff9ecded7ea9d0 (diff) | |
download | elgg-db58ab7e51e539ec3172762d5c781338d58ad4b8.tar.gz elgg-db58ab7e51e539ec3172762d5c781338d58ad4b8.tar.bz2 |
replaced deprecated function calls
git-svn-id: http://code.elgg.org@6321 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/rss')
-rw-r--r-- | views/rss/videolist/videolist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/rss/videolist/videolist.php b/views/rss/videolist/videolist.php index 86ea686ba..7745b070b 100644 --- a/views/rss/videolist/videolist.php +++ b/views/rss/videolist/videolist.php @@ -9,7 +9,7 @@ * @copyright Prateek Choudhary */ - if ($foreach = get_entities('object','',$vars['entity']->guid)) { + if ($foreach = elgg_get_entities(array('types' => 'object', 'subtypes' => 'videolist'))) { foreach($foreach as $videos) echo elgg_view_entity($videos); } |