From 4ff61fa6a8c012053659b1723b7dea9d38cd654e Mon Sep 17 00:00:00 2001 From: cash Date: Thu, 3 Feb 2011 12:10:45 +0000 Subject: changed elgg_get_plugin_path() to elgg_get_plugins_path() git-svn-id: http://code.elgg.org/elgg/trunk@8001 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/notifications/start.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mod/notifications/start.php') diff --git a/mod/notifications/start.php b/mod/notifications/start.php index 6f489f94d..00e981f7b 100644 --- a/mod/notifications/start.php +++ b/mod/notifications/start.php @@ -27,7 +27,7 @@ function notifications_plugin_init() { elgg_register_event_handler('create', 'friend', 'notifications_update_friend_notify'); elgg_register_plugin_hook_handler('access:collections:add-user', 'collection', 'notifications_update_collection_notify'); - $actions_base = elgg_get_plugin_path() . 'notifications/actions'; + $actions_base = elgg_get_plugins_path() . 'notifications/actions'; elgg_register_action("notificationsettings/save", "$actions_base/save.php"); elgg_register_action("notificationsettings/groupsave", "$actions_base/groupsave.php"); } @@ -44,7 +44,7 @@ function notifications_page_handler($page) { $page[0] = 'personal'; } - $base = elgg_get_plugin_path() . 'notifications'; + $base = elgg_get_plugins_path() . 'notifications'; switch ($page[0]) { case 'group': -- cgit v1.2.3