diff options
author | Brion Vibber <brion@pobox.com> | 2010-04-09 10:11:11 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-04-09 10:11:11 -0700 |
commit | 4b20d68c4851a2d7a7fca521f07ddba74187c53b (patch) | |
tree | 3c62c90a69419d81b4d3b62a9f43da08f02ec934 /actions | |
parent | f115c52d90ff1572e49cfdb2333d6638ebbccf88 (diff) |
i18n cleanup: fix bad string breakdown in license agreement checkbox on registration form.
Note that much of that form is duplicated several times for Twitter, Facebook, and OpenID registrations -- these need to be refactored to avoid having multiple out-of-sync copies of code and messages.
Diffstat (limited to 'actions')
-rw-r--r-- | actions/register.php | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/actions/register.php b/actions/register.php index ccab76cf0..da8d0a0bb 100644 --- a/actions/register.php +++ b/actions/register.php @@ -491,11 +491,15 @@ class RegisterAction extends Action $this->elementStart('li'); $this->element('input', $attrs); $this->elementStart('label', array('class' => 'checkbox', 'for' => 'license')); - $this->text(_('My text and files are available under ')); - $this->element('a', array('href' => common_config('license', 'url')), - common_config('license', 'title'), _("Creative Commons Attribution 3.0")); - $this->text(_(' except this private data: password, '. - 'email address, IM address, and phone number.')); + $message = _('My text and files are available under %s ' . + 'except this private data: password, ' . + 'email address, IM address, and phone number.'); + $link = '<a href="' . + htmlspecialchars(common_config('license', 'url')) . + '">' . + htmlspecialchars(common_config('license', 'title')) . + '</a>'; + $this->raw(sprintf(htmlspecialchars($message), $link)); $this->elementEnd('label'); $this->elementEnd('li'); } |