diff --git src/bp-templates/bp-legacy/buddypress/groups/single/admin.php src/bp-templates/bp-legacy/buddypress/groups/single/admin.php
index af2a709..c4ccbb6 100644
|
|
|
13 | 13 | </ul> |
14 | 14 | </div><!-- .item-list-tabs --> |
15 | 15 | |
| 16 | <?php |
| 17 | /** |
| 18 | * Fires before the group admin form and content. |
| 19 | * |
| 20 | * @since 2.7.0 |
| 21 | */ |
| 22 | do_action( 'bp_before_group_admin_form' ); ?> |
16 | 23 | |
17 | 24 | <form action="<?php bp_group_admin_form_action(); ?>" name="group-settings-form" id="group-settings-form" class="standard-form" method="post" enctype="multipart/form-data"> |
18 | 25 | |
… |
… |
|
53 | 60 | do_action( 'bp_after_group_admin_content' ); ?> |
54 | 61 | |
55 | 62 | </form><!-- #group-settings-form --> |
| 63 | |
| 64 | <?php |
| 65 | /** |
| 66 | * Fires after the group admin form and content. |
| 67 | * |
| 68 | * @since 2.7.0 |
| 69 | */ |
| 70 | do_action( 'bp_after_group_admin_form' ); ?> |