diff options
-rw-r--r-- | lib/videolist.php | 3 | ||||
-rw-r--r-- | start.php | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/lib/videolist.php b/lib/videolist.php index 96a2c6335..ae2441847 100644 --- a/lib/videolist.php +++ b/lib/videolist.php @@ -27,8 +27,7 @@ function videolist_parseurl($url){ */ function videolist_get_data($parsed) { $videotype = $parsed['videotype']; - $video_id = $parsed['video_id']; - + if(is_callable("videolist_get_data_$videotype")){ return array_merge($parsed, call_user_func("videolist_get_data_$videotype", $parsed)); } else { @@ -238,7 +238,7 @@ function videolist_embed_get_sections($hook, $type, $value, $params) { */ function videolist_embed_get_items($hook, $type, $value, $params) { $options = array( - 'owner_guid' => get_loggedin_userid(), + 'owner_guid' => elgg_get_logged_in_user_guid(), 'type_subtype_pair' => array('object' => 'videolist_item'), 'count' => TRUE ); |