]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Login actions don't show the notice form
authorEvan Prodromou <evan@status.net>
Wed, 9 Mar 2011 15:11:59 +0000 (10:11 -0500)
committerEvan Prodromou <evan@status.net>
Wed, 9 Mar 2011 15:11:59 +0000 (10:11 -0500)
actions/login.php
actions/register.php
plugins/OpenID/openidlogin.php

index 768bc04cef6aa8c3fd0c67993bfbf8ca645d0868..547374a12e803c307a16b97ee6ca093a19fbfd05 100644 (file)
@@ -297,4 +297,8 @@ class LoginAction extends Action
         $nav = new LoginGroupNav($this);
         $nav->show();
     }
+
+    function showNoticeForm()
+    {
+    }
 }
index 6b039c93f65fb1deccc57fee928e6a9564ef77e9..d0dbceeb81c4f1dd63f88072a564bb202801abfa 100644 (file)
@@ -606,4 +606,8 @@ class RegisterAction extends Action
         $nav = new LoginGroupNav($this);
         $nav->show();
     }
+
+    function showNoticeForm()
+    {
+    }
 }
index 8d25a2e9ac9beb6378867a621da025e97070f12d..850b68e63a316d5ce59bef21d95365ec93028532 100644 (file)
@@ -174,4 +174,8 @@ class OpenidloginAction extends Action
         $nav = new LoginGroupNav($this);
         $nav->show();
     }
+
+    function showNoticeForm()
+    {
+    }
 }