]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
move license label to _after_ the checkbox
authorEvan Prodromou <evan@prodromou.name>
Wed, 28 May 2008 17:04:38 +0000 (13:04 -0400)
committerEvan Prodromou <evan@prodromou.name>
Wed, 28 May 2008 17:04:38 +0000 (13:04 -0400)
darcs-hash:20080528170438-84dde-90edcb9248823988f70d8dbedf9a694a7bb732f5.gz

actions/register.php

index fbff26af03efb93bdff7f630cc206081bb4e318f..8ed5706f99d9c02ae7e05df8f4951ecff7450b99 100644 (file)
@@ -127,16 +127,16 @@ class RegisterAction extends Action {
                common_password('confirm', _t('Confirm'));
                common_input('email', _t('Email'));
                common_element_start('p');
+               common_element('input', array('type' => 'checkbox',
+                                                                         'id' => 'license',
+                                                                         'name' => 'license',
+                                                                         'value' => 'true'));
                common_element_start('label', array('for' => 'license'));
                common_text(_t('My text and files are available under '));
                common_element('a', array(href => $config['license']['url']),
                                           $config['license']['title']);
                common_text(_t(' except this private data: password, email address, IM address, phone number.'));
                common_element_end('label');
-               common_element('input', array('type' => 'checkbox',
-                                                                         'id' => 'license',
-                                                                         'name' => 'license',
-                                                                         'value' => 'true'));
                common_element_end('p');
                common_submit('submit', _t('Register'));
                common_element_end('form');