1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2023-10-10 13:37:24 +02:00

remove superfluous semi-colon

This commit is contained in:
glaszig 2019-08-01 12:48:56 +02:00
parent 964dc00fab
commit 2f6dc2cc05

View File

@ -70,8 +70,7 @@ function ensureCSRFSessionToken()
function CSRFToken()
{
?>
<input id="csrf_token" type="hidden" name="csrf_token" value="<?php echo htmlspecialchars($_SESSION['csrf_token'], ENT_QUOTES);
; ?>" />
<input id="csrf_token" type="hidden" name="csrf_token" value="<?php echo htmlspecialchars($_SESSION['csrf_token'], ENT_QUOTES); ?>" />
<?php
}