Merge pull request #7812 from tobiasd/20191103-tarpid

a hidden field for the registration form
This commit is contained in:
Philipp 2019-11-04 11:03:54 +01:00 committed by GitHub
commit 4daa3d37c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 0 deletions

View File

@ -261,6 +261,11 @@ class Register extends BaseModule
$a->internalRedirect('register/');
}
// Is there text in the tar pit?
if (!empty($_POST('registertarpit'))) {
\notice(L10n::t('You have entered too much information.'));
$a->internalRedirect('register/');
}
Model\Register::createForApproval($user['uid'], Config::get('system', 'language'), $_POST['permonlybox']);

View File

@ -56,6 +56,7 @@
{{if $permonly}}
{{include file="field_textarea.tpl" field=$permonlybox}}
<input type="input" id="registertarpit" style="display: none;" placeholder="Don't enter anything here" />
{{/if}}
{{$publish nofilter}}

View File

@ -56,6 +56,7 @@
{{if $permonly}}
{{include file="field_textarea.tpl" field=$permonlybox}}
<input type="input" id="registertarpit" style="display: none;" placeholder="Don't enter anything here"/>
{{/if}}
{{$publish nofilter}}