diff options
author | Brion Vibber <brion@pobox.com> | 2009-09-01 19:43:56 -0300 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-09-01 19:43:56 -0300 |
commit | e929bdc2ba156c615a1cac9bcff087e7a34132cb (patch) | |
tree | 6b12f75a34542e74194464d49a0a1ece91e2bc96 /actions | |
parent | b54a25c8951e48b675bc314d9d18d14b1957f56e (diff) |
fix some double-escaped %s leading to broken links right smack on the main page
Diffstat (limited to 'actions')
-rw-r--r-- | actions/public.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actions/public.php b/actions/public.php index 86b0d6f56..73fad182a 100644 --- a/actions/public.php +++ b/actions/public.php @@ -225,10 +225,10 @@ class PublicAction extends Action function showAnonymousMessage() { if (! (common_config('site','closed') || common_config('site','inviteonly'))) { - $m = _('This is %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' . + $m = _('This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' . 'based on the Free Software [StatusNet](http://status.net/) tool. ' . - '[Join now](%%%%action.register%%%%) to share notices about yourself with friends, family, and colleagues! ' . - '([Read more](%%%%doc.help%%%%))'); + '[Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ' . + '([Read more](%%doc.help%%))'); } else { $m = _('This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' . 'based on the Free Software [StatusNet](http://status.net/) tool.'); |