]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Needed the else. Tested logged in/out ; site closed/inviteonly/both
authorEric Helgeson <erichelgeson@gmail.com>
Tue, 16 Jun 2009 22:18:48 +0000 (17:18 -0500)
committerEric Helgeson <erichelgeson@gmail.com>
Tue, 16 Jun 2009 22:18:48 +0000 (17:18 -0500)
actions/public.php

index c04843383d887434b957f7cc8e2190c82806525a..2c8083320e1484f42e5a722f3959825c83b08f7f 100644 (file)
@@ -173,9 +173,11 @@ class PublicAction extends Action
         if (common_logged_in()) {
             $message .= _('Be the first to post!');
         }
-        if (! (common_config('site','closed') || common_config('site','inviteonly'))) {
-            $message .= _('Why not [register an account](%%action.register%%) and be the first to post!');
-        }
+        else {
+            if (! (common_config('site','closed') || common_config('site','inviteonly'))) {
+                $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));