diff options
Diffstat (limited to 'src/application/actions/register/_common.php')
| -rw-r--r-- | src/application/actions/register/_common.php | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/src/application/actions/register/_common.php b/src/application/actions/register/_common.php new file mode 100644 index 0000000..8423e72 --- /dev/null +++ b/src/application/actions/register/_common.php @@ -0,0 +1,12 @@ +<?php + +if ($currentUser) { +    header("Location: " . ($_GET["next"] ?? ".")); +    exit; +} + +if (!REGISTRATION_ENABLED) { +    http_response_code(403); +    msg_error(__("Public registration disabled")); +    exit; +} |