AMC changes for summary of care and CPOE, see note below:
[openemr.git] / phpmyadmin / templates / header_location.phtml
blobe1dabdfa565b5c49343e850e7e2c1574ac7f6eb1
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=<?php echo htmlspecialchars($uri) ?>">
19     <script type="text/javascript">
20         //<![CDATA[
21         setTimeout("window.location = decodeURI('<?php echo PMA_escapeJsString($uri) ?>')", 2000);
22         //]]>
23     </script>
24 </head>
25 <body>
26 <script type="text/javascript">
27     //<![CDATA[
28     document.write('<p><a href="<?php echo PMA_escapeJsString(htmlspecialchars($uri)) ?>"><?php echo __('Go') ?></a></p>');
29     //]]>
30 </script>
31 </body>
32 </html>