]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix unquoted array key, causes b0rkage on some php setups (via @bopuc)
authorCiaranG <ciaran@ciarang.com>
Thu, 11 Sep 2008 16:35:58 +0000 (12:35 -0400)
committerCiaranG <ciaran@ciarang.com>
Thu, 11 Sep 2008 16:35:58 +0000 (12:35 -0400)
darcs-hash:20080911163558-f6e2c-ae857f68936ed4328d4e38323f7e77ce25a0236a.gz

actions/register.php

index 2ca86ddf555a1489863ff9332ffcc40d41180407..c370e47276cf4db292149f061261df76a171a2bb 100644 (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');