Fix unquoted array key, causes b0rkage on some php setups (via @bopuc)

darcs-hash:20080911163558-f6e2c-ae857f68936ed4328d4e38323f7e77ce25a0236a.gz
This commit is contained in:
CiaranG 2008-09-11 12:35:58 -04:00
parent c10ab14d13
commit ce2eaf84aa
1 changed files with 1 additions and 1 deletions

View File

@ -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');