' . "\n";
$url_params['target'] = basename(PMA_getenv('SCRIPT_NAME'));
echo '';
/*
echo '';
*/
if ($GLOBALS['cfg']['NavigationBarIconic']) {
echo '';
}
if ($GLOBALS['cfg']['NavigationBarIconic'] !== true) {
echo $GLOBALS['strOpenNewWindow'];
}
echo '' . "\n";
echo '' . "\n";
}
/**
* Close database connections
*/
if (isset($GLOBALS['controllink']) && $GLOBALS['controllink']) {
@PMA_DBI_close($GLOBALS['controllink']);
}
if (isset($GLOBALS['userlink']) && $GLOBALS['userlink']) {
@PMA_DBI_close($GLOBALS['userlink']);
}
// Include possible custom footers
if (file_exists('./config.footer.inc.php')) {
require('./config.footer.inc.php');
}
/**
* Generates profiling data if requested
*/
// profiling deactivated due to licensing issues
if (! empty($GLOBALS['cfg']['DBG']['enable'])
&& ! empty($GLOBALS['cfg']['DBG']['profile']['enable'])) {
//run the basic setup code first
require_once './libraries/dbg/setup.php';
//if the setup ran fine, then do the profiling
/*
if (! empty($GLOBALS['DBG'])) {
require_once './libraries/dbg/profiling.php';
dbg_dump_profiling_results();
}
*/
}
?>