1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 12:48:24 +01:00

#4254 fix missing tablerender ID for coppa fail

This commit is contained in:
Jimako 2020-10-04 11:36:07 +02:00 committed by GitHub
parent 80f0899771
commit 6c774f0bee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -590,7 +590,7 @@ if ($qs == 'stage1' && $pref['use_coppa'] == 1)
if(!vartrue($_POST['coppa'])) if(!vartrue($_POST['coppa']))
{ {
$text = $tp->parseTemplate($COPPA_FAIL); $text = $tp->parseTemplate($COPPA_FAIL);
$ns->tablerender(LAN_SIGNUP_78, $text); $ns->tablerender(LAN_SIGNUP_78, $text, 'coppa');
require_once(FOOTERF); require_once(FOOTERF);
exit; exit;
} }