diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-29 02:03:52 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-29 02:03:52 +0000 |
commit | e4ec0953685ae79c7fe9e15b318b369dfb29839b (patch) | |
tree | 6420ff17c8acd2026134f9df4946e9a092a39c8d /mod/groups/actions/forums/editpost.php | |
parent | ed7371ca5fa32bb14d23b105789c46c9bdf36756 (diff) | |
download | elgg-e4ec0953685ae79c7fe9e15b318b369dfb29839b.tar.gz elgg-e4ec0953685ae79c7fe9e15b318b369dfb29839b.tar.bz2 |
Merging [6091] to trunk.
git-svn-id: http://code.elgg.org/elgg/trunk@6282 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/actions/forums/editpost.php')
-rw-r--r-- | mod/groups/actions/forums/editpost.php | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/mod/groups/actions/forums/editpost.php b/mod/groups/actions/forums/editpost.php index d30fad31f..5ce1fac13 100644 --- a/mod/groups/actions/forums/editpost.php +++ b/mod/groups/actions/forums/editpost.php @@ -10,13 +10,9 @@ * @link http://elgg.com/ */ - // Make sure we're logged in (send us to the front page if not) - if (!isloggedin()) forward(); - // Check the user is a group member $group_guid = get_input('group'); $group_entity = get_entity($group_guid); - if (!$group_entity->isMember($vars['user'])) forward(); //get the required variables $post = get_input("post"); @@ -27,25 +23,24 @@ $access_id = $annotation->access_id; $topic = get_input("topic"); - if($annotation){ + if ($annotation) { //can edit? Either the comment owner or admin can - if(groups_can_edit_discussion($annotation, page_owner_entity()->owner_guid)){ + if (groups_can_edit_discussion($annotation, page_owner_entity()->owner_guid)) { update_annotation($post, "group_topic_post", $post_comment, "",$commentOwner, $access_id); system_message(elgg_echo("groups:forumpost:edited")); - }else{ + } else { system_message(elgg_echo("groups:forumpost:error")); } - }else{ + } else { system_message(elgg_echo("groups:forumpost:error")); } // Forward to the group forum page - global $CONFIG; $url = $CONFIG->wwwroot . "mod/groups/topicposts.php?topic={$topic}&group_guid={$group_guid}/"; forward($url); |