diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-04-07 17:14:23 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-04-07 17:14:23 -0400 |
commit | 4e3e4fcfff53ea3a5ef5c90672f3848596d3acbf (patch) | |
tree | be91ddb09b757813f983f40cb2b239eb931186fd /actions/public.php | |
parent | 5953d56fe2db5cf610cd13e3806d5596964592cf (diff) | |
parent | 92d18134bfe082f75211b3baa93f20d88367dba6 (diff) |
Merge branch '0.7.x' into 0.8.x
Diffstat (limited to 'actions/public.php')
-rw-r--r-- | actions/public.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/public.php b/actions/public.php index 5a2720a9a..b7b7fc6b7 100644 --- a/actions/public.php +++ b/actions/public.php @@ -179,7 +179,7 @@ class PublicAction extends Action return; } - $message = _('This is the public timeline for %%site.name%% but noone has posted anything yet.') . ' '; + $message = _('This is the public timeline for %%site.name%% but no one has posted anything yet.') . ' '; if (common_logged_in()) { $message .= _('Be the first to post!'); @@ -188,7 +188,7 @@ class PublicAction extends Action $message .= _('Why not [register an account](%%action.register%%) and be the first to post!'); } - $this->elementStart('div', 'blankfiller'); + $this->elementStart('div', 'guide'); $this->raw(common_markup_to_html($message)); $this->elementEnd('div'); } |