diff options
Diffstat (limited to 'mod/embed')
-rw-r--r-- | mod/embed/start.php | 6 | ||||
-rw-r--r-- | mod/embed/views/default/embed/embed.php | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/mod/embed/start.php b/mod/embed/start.php index b3a6a3feb..5a7076c34 100644 --- a/mod/embed/start.php +++ b/mod/embed/start.php @@ -44,8 +44,8 @@ function embed_page_handler($page) { // default to embed/listing | item if not found. // @todo trigger for all right now. If we categorize these later we can trigger // for certain categories. - $sections = trigger_plugin_hook('embed_get_sections', 'all', NULL, array()); - $upload_sections = trigger_plugin_hook('embed_get_upload_sections', 'all', NULL, array()); + $sections = elgg_trigger_plugin_hook('embed_get_sections', 'all', NULL, array()); + $upload_sections = elgg_trigger_plugin_hook('embed_get_upload_sections', 'all', NULL, array()); elgg_sort_3d_array_by_value($sections, 'name'); elgg_sort_3d_array_by_value($upload_sections, 'name'); @@ -66,4 +66,4 @@ function embed_page_handler($page) { exit; } -register_elgg_event_handler('init', 'system', 'embed_init');
\ No newline at end of file +elgg_register_event_handler('init', 'system', 'embed_init');
\ No newline at end of file diff --git a/mod/embed/views/default/embed/embed.php b/mod/embed/views/default/embed/embed.php index 583ea71e5..2855a5576 100644 --- a/mod/embed/views/default/embed/embed.php +++ b/mod/embed/views/default/embed/embed.php @@ -74,7 +74,7 @@ if (!$sections) { if ($section_content = elgg_view("embed/$active_section/content", $params)) { // handles its own pagination $content .= $section_content; - } elseif ($embed_info = trigger_plugin_hook('embed_get_items', $active_section, $params, array('items' => array(), 'count' => 0))) { + } elseif ($embed_info = elgg_trigger_plugin_hook('embed_get_items', $active_section, $params, array('items' => array(), 'count' => 0))) { // check if we have an override for this section type. $view = "embed/$active_section/item/$layout"; |