diff options
author | Zach Copley <zach@status.net> | 2009-11-25 01:11:29 +0000 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-11-25 01:13:21 +0000 |
commit | 824e347e5572a929dacf884f3dc97d2e4a101c77 (patch) | |
tree | 8ebd33f8e4f54aa3f6ce2ef81eefdf4abcea28d6 /plugins | |
parent | ace4b7dc099b39834a70b70bbf3417d51991be6a (diff) |
Forgot to render the nav menu when on FB Connect login tab
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Facebook/FBConnectLogin.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/Facebook/FBConnectLogin.php b/plugins/Facebook/FBConnectLogin.php index f146bef7d..d2bb8054c 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(); + } } |