fix checkbox for license
darcs-hash:20080715214249-84dde-ed5f9b38a93e9fcfd5c6772fb1c784696d3a435a.gz
This commit is contained in:
parent
d361bad9e1
commit
ba09eb7700
|
@ -225,10 +225,14 @@ class RegisterAction extends Action {
|
||||||
$this->boolean('rememberme'),
|
$this->boolean('rememberme'),
|
||||||
_('Automatically login in the future; not for shared computers!'));
|
_('Automatically login in the future; not for shared computers!'));
|
||||||
common_element_start('p');
|
common_element_start('p');
|
||||||
common_element('input', array('type' => 'checkbox',
|
$attrs = array('type' => 'checkbox',
|
||||||
'id' => 'license',
|
'id' => 'license',
|
||||||
'name' => 'license',
|
'name' => 'license',
|
||||||
'value' => ($this->boolean('license')) ? 'true' : 'false'));
|
'value' => 'true');
|
||||||
|
if ($this->boolean('license')) {
|
||||||
|
$attrs['checked'] = 'checked';
|
||||||
|
}
|
||||||
|
common_element('input', $attrs);
|
||||||
common_text(_('My text and files are available under '));
|
common_text(_('My text and files are available under '));
|
||||||
common_element('a', array(href => $config['license']['url']),
|
common_element('a', array(href => $config['license']['url']),
|
||||||
$config['license']['title']);
|
$config['license']['title']);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user