aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/actions/forums/deletepost.php
diff options
context:
space:
mode:
authordave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-22 13:23:27 +0000
committerdave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-22 13:23:27 +0000
commit7ccee82ef0284fb0399369ad6282cd9ddc3e0e1d (patch)
treecd6120b422f554f52e1febf7406f5a226019b49d /mod/groups/actions/forums/deletepost.php
parenta6e8eb522323fa2e3f2c1fd6e58a3eec9857db63 (diff)
downloadelgg-7ccee82ef0284fb0399369ad6282cd9ddc3e0e1d.tar.gz
elgg-7ccee82ef0284fb0399369ad6282cd9ddc3e0e1d.tar.bz2
users can now edit and delete their forum comments
git-svn-id: https://code.elgg.org/elgg/trunk@2877 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/actions/forums/deletepost.php')
-rw-r--r--mod/groups/actions/forums/deletepost.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/groups/actions/forums/deletepost.php b/mod/groups/actions/forums/deletepost.php
index 2298a930a..9c89610bb 100644
--- a/mod/groups/actions/forums/deletepost.php
+++ b/mod/groups/actions/forums/deletepost.php
@@ -21,8 +21,8 @@
if ($post = get_annotation($post_id)) {
- //check that the user can edit
- if ($post->canEdit()) {
+ //check that the user can edit as well as admin
+ if ($post->canEdit() || ($post->owner_guid == $_SESSION['user']->guid)) {
//delete
$post->delete();