diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-20 13:31:46 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-20 13:31:46 +0000 |
commit | 944b8f89b8dd87bf444503d0815aa69ed19f599d (patch) | |
tree | 6786d1a4cf55f27ca6fa46364da649932b750e7e /mod/groups/actions/forums/edittopic.php | |
parent | ffd932df92f857a9607b119a0953ee353c422119 (diff) | |
download | elgg-944b8f89b8dd87bf444503d0815aa69ed19f599d.tar.gz elgg-944b8f89b8dd87bf444503d0815aa69ed19f599d.tar.bz2 |
Fixes #2668 adding getOwnerGUID()
git-svn-id: http://code.elgg.org/elgg/trunk@7378 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/actions/forums/edittopic.php')
-rw-r--r-- | mod/groups/actions/forums/edittopic.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/groups/actions/forums/edittopic.php b/mod/groups/actions/forums/edittopic.php index 247c06c8c..b032e37d7 100644 --- a/mod/groups/actions/forums/edittopic.php +++ b/mod/groups/actions/forums/edittopic.php @@ -26,7 +26,7 @@ $tagarray = string_to_tag_array($tags); // Make sure we actually have permission to edit $topic = get_entity($topic_guid); if ($topic){ - $user = $topic->getOwner(); + $user = $topic->getOwnerGUID(); if ($topic->getSubtype() == "groupforumtopic") { // Convert string of tags into a preformatted array |