]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Forgot to render the nav menu when on FB Connect login tab
authorZach Copley <zach@status.net>
Wed, 25 Nov 2009 01:11:29 +0000 (01:11 +0000)
committerZach Copley <zach@status.net>
Wed, 25 Nov 2009 01:11:29 +0000 (01:11 +0000)
plugins/Facebook/FBConnectLogin.php

index f146bef7d1858a850de4f49dd656a683dd2fbca6..d2bb8054c982b20cdd2694e98ebb7ec7f0ff513e 100644 (file)
@@ -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();
+    }
 }