From 851b6f87d426ff60d21eeafd6d63ff241bb18b82 Mon Sep 17 00:00:00 2001 From: ewinslow Date: Wed, 16 Feb 2011 20:56:25 +0000 Subject: Updated register_entity_url_handler => elgg_* in plugins. Used this regex: ([^_a-z])register_entity_url_handler\((.*),(.*,.*)\); git-svn-id: http://code.elgg.org/elgg/trunk@8263 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/groups/start.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mod/groups/start.php') diff --git a/mod/groups/start.php b/mod/groups/start.php index 6cd4b07ad..96eca34d4 100644 --- a/mod/groups/start.php +++ b/mod/groups/start.php @@ -28,7 +28,7 @@ function groups_init() { elgg_register_page_handler('groups', 'groups_page_handler'); // Register URL handlers for groups - register_entity_url_handler('groups_url', 'group', 'all'); + elgg_register_entity_url_handler('group', 'all', 'groups_url'); elgg_register_plugin_hook_handler('entity:icon:url', 'group', 'groups_icon_url_override'); // Register an icon handler for groups @@ -477,7 +477,7 @@ function discussion_init() { elgg_register_page_handler('discussion', 'discussion_page_handler'); - register_entity_url_handler('discussion_override_topic_url', 'object', 'groupforumtopic'); + elgg_register_entity_url_handler('object', 'groupforumtopic', 'discussion_override_topic_url'); //register_extender_url_handler('group_topicpost_url', 'annotation', 'group_topic_post'); $action_base = elgg_get_plugins_path() . 'groups/actions/discussion'; -- cgit v1.2.3