diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-08-25 15:37:38 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-08-25 15:37:38 -0400 |
commit | 1e78f020e997b1904cfdfc6c1c1095e05441e0c3 (patch) | |
tree | 5de4bea60265d3ef9d4a5d6e9cef8e55cfdb435a /actions/invite.php | |
parent | a442d4d04a5aa97055386474e374de19f8239b64 (diff) |
fix instructions
darcs-hash:20080825193738-84dde-d58e63ee015a52ccf065d17a2fc16d2d1899f805.gz
Diffstat (limited to 'actions/invite.php')
-rw-r--r-- | actions/invite.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/actions/invite.php b/actions/invite.php index 2bb2ff97b..38ce38907 100644 --- a/actions/invite.php +++ b/actions/invite.php @@ -52,8 +52,10 @@ class InviteAction extends Action { if ($error) { common_element('p', 'error', $error); } else { - common_element('div', 'instructions', + common_element_start('div', 'instructions'); + common_element('p', NULL, _('Use this form to invite your friends and colleagues to use this service.')); + common_element_end('div'); } } @@ -76,6 +78,8 @@ class InviteAction extends Action { _('Optionally add a personal message to the invitation.')); common_submit('preview', _('Preview')); + + common_element_end('form'); common_show_footer(); } |