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

This commit is contained in:
Zach Copley 2009-11-25 01:11:29 +00:00
parent 6dfca45a2c
commit b586063ebe
1 changed files with 5 additions and 1 deletions

View 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();
}
}