From: Evan Prodromou Date: Wed, 9 Mar 2011 15:11:59 +0000 (-0500) Subject: Login actions don't show the notice form X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a4b3edaf40a397fca66f1f6be4b3c21af03ab6c8;p=quix0rs-gnu-social.git Login actions don't show the notice form --- diff --git a/actions/login.php b/actions/login.php index 768bc04cef..547374a12e 100644 --- a/actions/login.php +++ b/actions/login.php @@ -297,4 +297,8 @@ class LoginAction extends Action $nav = new LoginGroupNav($this); $nav->show(); } + + function showNoticeForm() + { + } } diff --git a/actions/register.php b/actions/register.php index 6b039c93f6..d0dbceeb81 100644 --- a/actions/register.php +++ b/actions/register.php @@ -606,4 +606,8 @@ class RegisterAction extends Action $nav = new LoginGroupNav($this); $nav->show(); } + + function showNoticeForm() + { + } } diff --git a/plugins/OpenID/openidlogin.php b/plugins/OpenID/openidlogin.php index 8d25a2e9ac..850b68e63a 100644 --- a/plugins/OpenID/openidlogin.php +++ b/plugins/OpenID/openidlogin.php @@ -174,4 +174,8 @@ class OpenidloginAction extends Action $nav = new LoginGroupNav($this); $nav->show(); } + + function showNoticeForm() + { + } }