[hotfix] Fix syntax error in Module\Register

- Prevents registration
- Addresses https://github.com/friendica/friendica/issues/7675#issuecomment-552070076
This commit is contained in:
Hypolite Petovan 2019-11-09 01:09:26 -05:00 committed by GitHub
parent 5053440da6
commit babcd24412
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -262,7 +262,7 @@ class Register extends BaseModule
$a->internalRedirect('register/');
}
// Is there text in the tar pit?
if (!empty($_POST('registertarpit'))) {
if (!empty($_POST['registertarpit'])) {
\notice(L10n::t('You have entered too much information.'));
$a->internalRedirect('register/');
}