Once a query has been executed phpMyAdmin now moves back to the calling script

This commit is contained in:
Loïc Chapeaux
2001-08-19 12:13:03 +00:00
parent 59c3fc6b90
commit 4d0b6c3a3c
4 changed files with 84 additions and 32 deletions

View File

@@ -8,6 +8,18 @@
require('./grab_globals.inc.php3');
if (!isset($message)) {
include('./header.inc.php3');
// Reloads the navigation frame via JavaScript if required
if (!empty($reload) && $reload == 'true') {
echo "\n";
?>
<script type="text/javascript" language="javascript1.2">
<!--
window.parent.frames['nav'].location.replace('./left.php3?lang=<?php echo $lang; ?>&server=<?php echo $server; ?>&db=<?php echo urlencode($db); ?>');
//-->
</script>
<?php
}
echo "\n";
} else {
show_message($message);
}