1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02: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

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;
} }
@@ -639,4 +639,4 @@ function headerjs()
} }
</script>\n"; </script>\n";
} }