diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-11-12 09:50:12 -0500 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-11-16 19:53:03 -0500 |
commit | ec13919094145765bed8ad775d0c75598bb107ca (patch) | |
tree | f2d5775ded96c09e01cab3f4f06af2f200a0142f /mod/invitefriends/start.php | |
parent | 2f24f33695754fa6bf9128f88de431fc44c9f7d6 (diff) | |
download | elgg-ec13919094145765bed8ad775d0c75598bb107ca.tar.gz elgg-ec13919094145765bed8ad775d0c75598bb107ca.tar.bz2 |
removed uses of deprecated function for setting page owner guid
Diffstat (limited to 'mod/invitefriends/start.php')
-rw-r--r-- | mod/invitefriends/start.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/invitefriends/start.php b/mod/invitefriends/start.php index be853f2ce..368f6348a 100644 --- a/mod/invitefriends/start.php +++ b/mod/invitefriends/start.php @@ -33,7 +33,7 @@ function invitefriends_page_handler($page) { gatekeeper(); elgg_set_context('friends'); - set_page_owner(elgg_get_logged_in_user_guid()); + elgg_set_page_owner_guid(elgg_get_logged_in_user_guid()); $title = elgg_echo('friends:invite'); |