forked from GNUsocial/gnu-social
some debugging for email registration routes
This commit is contained in:
parent
7cc4c97aa9
commit
165d9fd9de
@ -70,8 +70,13 @@ class EmailRegistrationPlugin extends Plugin
|
|||||||
{
|
{
|
||||||
static $toblock = array('main/register', 'main/register/:code');
|
static $toblock = array('main/register', 'main/register/:code');
|
||||||
|
|
||||||
if (in_array($path, $toblock) && $defaults['action'] != 'emailregister') {
|
if (in_array($path, $toblock)) {
|
||||||
return false;
|
common_debug("Request came in for $path");
|
||||||
|
if ($defaults['action'] != 'emailregister') {
|
||||||
|
common_debug("Action is {$default['action']}, so: rejected.");
|
||||||
|
$result = false;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user