Bootstrap and jQuery upgrade for vulnerabilities

This commit is contained in:
Josh North 2021-05-28 12:03:03 -04:00
parent 4603574920
commit 2a8ee2d90f

View File

@ -5,12 +5,20 @@
<div class="container-fluid">
<div class="row">&nbsp;</div>
<div class="row row-cols-3">
<div class="col-sm d-grid gap-2 text-muted text-start"><?php echo $transLang['SERVER_TIME'] . ": " . $StaticFunctions->getUTC(); ?></div>
<div class="col-sm d-grid gap-2 text-muted text-center"><?php echo $transLang['LOCAL_TIME'] . ": " . $timenow; ?></div>
<div class="col-sm d-grid gap-2 text-muted text-end"><?php echo $StaticFunctions->getVersion($app_disp_lang); ?></div>
<div class="col-sm text-muted text-start"><?php echo $transLang['SERVER_TIME'] . ": " . $StaticFunctions->getUTC(); ?></div>
<div class="col-sm text-muted text-center"><?php echo $transLang['LOCAL_TIME'] . ": " . $timenow; ?></div>
<div class="col-sm text-muted text-end">
<a tabindex="0" role="button" data-bs-toggle="popover" data-bs-trigger="focus" data-bs-content="<?php echo $StaticFunctions->getVersion($app_disp_lang); ?>"><i class="far fa-copyright"></i></a>
</div>
</div>
</div>
<script>window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')</script>
<script>
var popoverTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]'))
var popoverList = popoverTriggerList.map(function (popoverTriggerEl) {
return new bootstrap.Popover(popoverTriggerEl)
})
</script>
<script src="js/bootstrap.min.js"></script>
<!-- END FOOTER CONTENT -->
</body>