From: Evan Prodromou Date: Mon, 18 Apr 2011 13:22:51 +0000 (-0400) Subject: add login menu to email registration page X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=213086cc1f8f0587b6e6e60a1feec49ed7563620;p=quix0rs-gnu-social.git add login menu to email registration page --- diff --git a/plugins/EmailRegistration/emailregister.php b/plugins/EmailRegistration/emailregister.php index 4c97434165..22e8d59424 100644 --- a/plugins/EmailRegistration/emailregister.php +++ b/plugins/EmailRegistration/emailregister.php @@ -387,4 +387,18 @@ class EmailregisterAction extends Action return $nickname; } + + /** + * A local menu + * + * Shows different login/register actions. + * + * @return void + */ + + function showLocalNav() + { + $nav = new LoginGroupNav($this); + $nav->show(); + } }