diff options
author | CiaranG <ciaran@ciarang.com> | 2008-09-11 12:35:58 -0400 |
---|---|---|
committer | CiaranG <ciaran@ciarang.com> | 2008-09-11 12:35:58 -0400 |
commit | ce2eaf84aac790a647cda202d6e361ffb1fdff3b (patch) | |
tree | 9a593a1be6995e6281435d9a75cef4eae515c7f7 | |
parent | c10ab14d13bb6800fbc379c90f79469ee50ce0f0 (diff) |
Fix unquoted array key, causes b0rkage on some php setups (via @bopuc)
darcs-hash:20080911163558-f6e2c-ae857f68936ed4328d4e38323f7e77ce25a0236a.gz
-rw-r--r-- | actions/register.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/register.php b/actions/register.php index 2ca86ddf5..c370e4727 100644 --- a/actions/register.php +++ b/actions/register.php @@ -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'); |