summaryrefslogtreecommitdiff
path: root/actions/register.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/register.php')
-rw-r--r--actions/register.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/actions/register.php b/actions/register.php
index 80cc6aa7e..369017b3b 100644
--- a/actions/register.php
+++ b/actions/register.php
@@ -99,7 +99,7 @@ class RegisterAction extends Action {
function show_form($error=NULL) {
common_show_header(_t('Login'));
- common_start_element('form', array('method' => 'POST',
+ common_element_start('form', array('method' => 'POST',
'id' => 'login',
'action' => common_local_url('login')));
common_element('label', array('for' => 'username'),
@@ -130,5 +130,6 @@ class RegisterAction extends Action {
'type' => 'button',
'id' => 'cancel'),
_t('Cancel'));
+ common_element_end('form');
}
}