diff --git a/actions/recoverpassword.php b/actions/recoverpassword.php index 71f673bd3b..47a947dc0c 100644 --- a/actions/recoverpassword.php +++ b/actions/recoverpassword.php @@ -440,4 +440,18 @@ class RecoverpasswordAction extends Action $this->success = true; $this->showPage(); } + + /** + * A local menu + * + * Shows different login/register actions. + * + * @return void + */ + + function showLocalNav() + { + $nav = new LoginGroupNav($this); + $nav->show(); + } }