From ce2eaf84aac790a647cda202d6e361ffb1fdff3b Mon Sep 17 00:00:00 2001 From: CiaranG Date: Thu, 11 Sep 2008 12:35:58 -0400 Subject: [PATCH] Fix unquoted array key, causes b0rkage on some php setups (via @bopuc) darcs-hash:20080911163558-f6e2c-ae857f68936ed4328d4e38323f7e77ce25a0236a.gz --- actions/register.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/register.php b/actions/register.php index 2ca86ddf55..c370e47276 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');