diff options
author | Matt Lee <mattl@cnuk.org> | 2010-08-09 18:58:00 -0400 |
---|---|---|
committer | Matt Lee <mattl@cnuk.org> | 2010-08-09 18:58:00 -0400 |
commit | a9231266109092d4c5bc1ba452e13de293dc87e2 (patch) | |
tree | ea4af6b4a5fd30bda29cfccb3004b51b13a03186 | |
parent | 05e4e711af40de473b05c42ce7fa8b3156f82c96 (diff) |
remove microblogging messages
-rw-r--r-- | actions/public.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/actions/public.php b/actions/public.php index 5fc547fea..181df1e43 100644 --- a/actions/public.php +++ b/actions/public.php @@ -239,13 +239,11 @@ 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 ' . - 'based on the Free Software [StatusNet](http://status.net/) tool. ' . + $m = _('This is %%site.name%%, a social networking site. ' . '[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.'); + $m = _('This is %%site.name%%, a social networking site.'); } $this->elementStart('div', array('id' => 'anon_notice')); $this->raw(common_markup_to_html($m)); |