Fix unquoted array key, causes b0rkage on some php setups (via @bopuc)
darcs-hash:20080911163558-f6e2c-ae857f68936ed4328d4e38323f7e77ce25a0236a.gz
This commit is contained in:
parent
c10ab14d13
commit
ce2eaf84aa
|
@ -200,7 +200,7 @@ class RegisterAction extends Action {
|
|||
}
|
||||
common_element('input', $attrs);
|
||||
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']);
|
||||
common_text(_(' except this private data: password, email address, IM address, phone number.'));
|
||||
common_element_end('p');
|
||||
|
|
Loading…
Reference in New Issue
Block a user