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/favorited.php | |
parent | 5953d56fe2db5cf610cd13e3806d5596964592cf (diff) | |
parent | 92d18134bfe082f75211b3baa93f20d88367dba6 (diff) |
Merge branch '0.7.x' into 0.8.x
Diffstat (limited to 'actions/favorited.php')
-rw-r--r-- | actions/favorited.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/favorited.php b/actions/favorited.php index 20a354674..27da25435 100644 --- a/actions/favorited.php +++ b/actions/favorited.php @@ -150,7 +150,7 @@ class FavoritedAction extends Action return; } - $message = _('Favorite notices appear on this page but noone has favorited one yet.') . ' '; + $message = _('Favorite notices appear on this page but no one has favorited one yet.') . ' '; if (common_logged_in()) { $message .= _('Be the first to add a notice to your favorites by clicking the fave button next to any notice you like.'); @@ -159,7 +159,7 @@ class FavoritedAction extends Action $message .= _('Why not [register an account](%%action.register%%) and be the first to add a notice to your favorites!'); } - $this->elementStart('div', 'blankfiller'); + $this->elementStart('div', 'guide'); $this->raw(common_markup_to_html($message)); $this->elementEnd('div'); } |