From db7b497114329dda5f560198884c5bc5fbb3c1a8 Mon Sep 17 00:00:00 2001 From: cash Date: Wed, 3 Nov 2010 02:13:36 +0000 Subject: Fixes #2128 - replaces all uses of set_context() and get_context() in core and plugins git-svn-id: http://code.elgg.org/elgg/trunk@7215 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/invitefriends/start.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mod/invitefriends/start.php') diff --git a/mod/invitefriends/start.php b/mod/invitefriends/start.php index 4b039bac3..19a4c4b55 100644 --- a/mod/invitefriends/start.php +++ b/mod/invitefriends/start.php @@ -10,9 +10,9 @@ */ function invitefriends_pagesetup() { global $CONFIG; - if (get_context() == "friends" || - get_context() == "friendsof" || - get_context() == "collections") { + if (elgg_get_context() == "friends" || + elgg_get_context() == "friendsof" || + elgg_get_context() == "collections") { add_submenu_item(elgg_echo('friends:invite'), "mod/invitefriends/",'invite'); } } -- cgit v1.2.3