Translated using Weblate (Esperanto)
[phpmyadmin.git] / templates / header_location.phtml
bloba4e5fd8fee4d14ea6cb6d116d5031a33d73307d0
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4  * Manage HTML redirection
5  *
6  * @package PhpMyAdmin-template
7  *
8  * @param string $uri Redirection location
9  */
10 $uri = isset($uri) ? $uri : null;
12 <html>
13 <head>
14     <title>- - -</title>
15     <meta http-equiv="expires" content="0">
16     <meta http-equiv="Pragma" content="no-cache">
17     <meta http-equiv="Cache-Control" content="no-cache">
18     <meta http-equiv="Refresh" content="0;url=<?= htmlspecialchars($uri) ?>">
19     <script type="text/javascript">
20         //<![CDATA[
21         setTimeout("window.location = decodeURI('<?= PMA\libraries\Sanitize::escapeJsString($uri) ?>')", 2000);
22         //]]>
23     </script>
24 </head>
25 <body>
26 <script type="text/javascript">
27     //<![CDATA[
28     document.write('<p><a href="<?= PMA\libraries\Sanitize::escapeJsString(htmlspecialchars($uri)) ?>"><?php echo __('Go') ?></a></p>');
29     //]]>
30 </script>
31 </body>
32 </html>