aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/actions
diff options
context:
space:
mode:
authordave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-27 16:47:03 +0000
committerdave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-27 16:47:03 +0000
commit401478ab14d41277afd0549a216a639e4eb984cb (patch)
tree9b6bd3d1d627fac842e24c4dc8b5417011e7682a /mod/groups/actions
parent85064fbe0ebc019fe2e7f96a2b0fae09f24f2c98 (diff)
downloadelgg-401478ab14d41277afd0549a216a639e4eb984cb.tar.gz
elgg-401478ab14d41277afd0549a216a639e4eb984cb.tar.bz2
forum post edit bug fixed
git-svn-id: https://code.elgg.org/elgg/trunk@2986 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/actions')
-rw-r--r--mod/groups/actions/forums/editpost.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/groups/actions/forums/editpost.php b/mod/groups/actions/forums/editpost.php
index 7f6e75683..08c2dd703 100644
--- a/mod/groups/actions/forums/editpost.php
+++ b/mod/groups/actions/forums/editpost.php
@@ -20,7 +20,8 @@
//get the required variables
$post = get_input("post");
- $post_comment = get_input("postComment");
+ $field_num = get_input("field_num");
+ $post_comment = get_input("postComment{$field_num}");
$annotation = get_annotation($post);
$commentOwner = $annotation->owner_guid;
$access_id = $annotation->access_id;