1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 03:10:50 +02:00

Merge pull request #4255 from Jimmi08/patch-3

Fixes #4254 Missing tablerender ID for coppa fail
This commit is contained in:
Cameron
2020-11-02 10:45:56 -08:00
committed by GitHub

View File

@@ -590,7 +590,7 @@ if ($qs == 'stage1' && $pref['use_coppa'] == 1)
if(!vartrue($_POST['coppa']))
{
$text = $tp->parseTemplate($COPPA_FAIL);
$ns->tablerender(LAN_SIGNUP_78, $text);
$ns->tablerender(LAN_SIGNUP_78, $text, 'coppa');
require_once(FOOTERF);
exit;
}
@@ -639,4 +639,4 @@ function headerjs()
}
</script>\n";
}
}