diff options
author | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-23 14:01:33 +0000 |
---|---|---|
committer | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-23 14:01:33 +0000 |
commit | 85c42410d72441d4c87403540094a73d6246917a (patch) | |
tree | 1ea70a2b3a58a3011decdbbb4daa8f3ca0551c67 /mod/groups/views/default | |
parent | 7dc3d72e9d9a1d2cc919a14cc1df5171b91d62ad (diff) | |
download | elgg-85c42410d72441d4c87403540094a73d6246917a.tar.gz elgg-85c42410d72441d4c87403540094a73d6246917a.tar.bz2 |
new group edit options on discussion
git-svn-id: https://code.elgg.org/elgg/trunk@2895 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/views/default')
-rw-r--r-- | mod/groups/views/default/forum/topicposts.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/groups/views/default/forum/topicposts.php b/mod/groups/views/default/forum/topicposts.php index dd86c6679..5b259d13f 100644 --- a/mod/groups/views/default/forum/topicposts.php +++ b/mod/groups/views/default/forum/topicposts.php @@ -48,8 +48,8 @@ </table>
<?php
- //if the comment owner is looking at it, or admin they can edit
- if ($vars['entity']->canEdit() || ($vars['entity']->owner_guid == $_SESSION['user']->guid)) {
+ //if the comment owner is looking at it, or admin, or group owner they can edit
+ if (groups_can_edit_discussion($vars['entity'], page_owner_entity()->owner_guid)) {
?>
<p class="topic-post-menu">
<?php
|