blob: 7ab9314f7e82243b32e448f04ef65769550de4b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/**
* Elgg invite form wrapper
*
* @package ElggInviteFriends
*/
echo elgg_view('input/form', array(
'action' => 'action/invitefriends/invite',
'body' => elgg_view('invitefriends/formitems'),
'method' => 'post'
)
);
|