diff options
Diffstat (limited to 'actions/public.php')
-rw-r--r-- | actions/public.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/actions/public.php b/actions/public.php index 9b22e0a2c..5a380de9a 100644 --- a/actions/public.php +++ b/actions/public.php @@ -166,6 +166,22 @@ class PublicAction extends Action $nav->show(); } + function showEmptyList() + { + $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!'); + } + else { + $message .= _('Why not [register an account](%%action.register%%) and be the first to post!'); + } + + $this->elementStart('div', 'guide'); + $this->raw(common_markup_to_html($message)); + $this->elementEnd('div'); + } + /** * Fill the content area * @@ -189,6 +205,10 @@ class PublicAction extends Action $cnt = $nl->show(); + if ($cnt == 0) { + $this->showEmptyList(); + } + $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE, $this->page, 'public'); } |