From: Zach Copley <zach@status.net>
Date: Wed, 25 Nov 2009 01:11:29 +0000 (+0000)
Subject: Forgot to render the nav menu when on FB Connect login tab
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=824e347e5572a929dacf884f3dc97d2e4a101c77;p=quix0rs-gnu-social.git

Forgot to render the nav menu when on FB Connect login tab
---

diff --git a/plugins/Facebook/FBConnectLogin.php b/plugins/Facebook/FBConnectLogin.php
index f146bef7d1..d2bb8054c9 100644
--- a/plugins/Facebook/FBConnectLogin.php
+++ b/plugins/Facebook/FBConnectLogin.php
@@ -21,7 +21,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
     exit(1);
 }
 
-
 require_once INSTALLDIR . '/plugins/Facebook/FacebookPlugin.php';
 
 class FBConnectLoginAction extends Action
@@ -65,4 +64,9 @@ class FBConnectLoginAction extends Action
         $this->elementEnd('fieldset');
     }
 
+    function showLocalNav()
+    {
+        $nav = new LoginGroupNav($this);
+        $nav->show();
+    }
 }