patch #460567 (UI - small html change in frame options) thanks to Vaskin Kissoyan

This commit is contained in:
Loïc Chapeaux
2001-09-12 20:26:02 +00:00
parent d6ac0a5119
commit 77172fab57
2 changed files with 17 additions and 8 deletions

View File

@@ -34,15 +34,22 @@ $url_query = 'lang=' . $lang
<html>
<head>
<title>phpMyAdmin <?php echo PHPMYADMIN_VERSION; ?> - <?php echo $HTTP_HOST; ?></title>
<style type="text/css">
<!--
body {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>}
//-->
</style>
</head>
<frameset cols="<?php echo $cfgLeftWidth; ?>,*" rows="*" border="0" frameborder="0">
<frame src="left.php3?<?php echo $url_query; ?>" name="nav">
<frame src="<?php echo (empty($db)) ? 'main.php3' : 'db_details.php3'; ?>?<?php echo $url_query; ?>" name="phpmain">
</frameset>
<noframes>
<body bgcolor="#FFFFFF">
<frameset cols="<?php echo $cfgLeftWidth; ?>,*" rows="*">
<frame src="left.php3?<?php echo $url_query; ?>" name="nav" frameborder="1" />
<frame src="<?php echo (empty($db)) ? 'main.php3' : 'db_details.php3'; ?>?<?php echo $url_query; ?>" name="phpmain" />
<noframes>
<body bgcolor="#FFFFFF">
<p>phpMyAdmin requires a <b>frames-capable</b> browser.</p>
</body>
</noframes>
</frameset>
</body>
</noframes>
</html>