The type attribute is unnecessary for JavaScript resources. Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
23 lines
505 B
PHP
23 lines
505 B
PHP
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>phpMyAdmin</title>
|
|
<meta http-equiv="expires" content="0">
|
|
<meta http-equiv="Pragma" content="no-cache">
|
|
<meta http-equiv="Cache-Control" content="no-cache">
|
|
<meta http-equiv="Refresh" content="0;url=./public/">
|
|
<script>
|
|
//<![CDATA[
|
|
setTimeout(function() { window.location = decodeURI('./public/'); }, 2000);
|
|
//]]>
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
//<![CDATA[
|
|
document.write('<p><a href="./public/">Redirecting…</a></p>');
|
|
//]]>
|
|
</script>
|
|
</body>
|
|
</html>
|