This commit is contained in:
Steve Alberty
2001-07-21 17:31:06 +00:00
parent df3f02b687
commit d211a3b862
3 changed files with 6 additions and 4 deletions

View File

@@ -6,6 +6,8 @@ $Id$
$Source$
2001-07-21 Steve Alberty <alberty@neptunlabs.de>
* config.inc.php3,index.php3: add $cfgLeftWidth to configure
individual left frame width
* db_details.php3,tbl_properties.php3: fix incorrect size
calculation with merge tables BUG: #442948

View File

@@ -84,11 +84,11 @@ $cfgTextareaCols = "40";
$cfgTextareaRows = "7";
$cfgModifyDeleteAtLeft = true;
$cfgModifyDeleteAtRight = false;
$cfgSkipLockedTables = false; // mark used tables, make possible to show locked tables (since 3.23.30)
$cfgLeftWidth = 150; // left frame width
$cfgDefaultLang = "en"; // default language to use, if not browser-defined or user-defined
// $cfgLang = "en"; // force: always use this language - must be defined in select_lang.inc.php3
$cfgDefaultLang = "en"; // default language to use, if not browser-defined or user-defined
// $cfgLang = "en"; // force: always use this language - must be defined in select_lang.inc.php3
require("./select_lang.inc.php3"); // load language file

View File

@@ -19,7 +19,7 @@ if (empty($HTTP_HOST)) {
<title>phpMyAdmin <?php echo PHPMYADMIN_VERSION; ?> - <?php echo $HTTP_HOST;?></title>
</head>
<frameset cols="150,*" rows="*" border="0" frameborder="0">
<frameset cols="<?php echo $cfgLeftWidth;?>,*" rows="*" border="0" frameborder="0">
<frame src="left.php3?server=<?php echo $server;?>&lang=<?php echo $lang; echo (empty($db)) ? '' : '&db=' . urlencode($db); ?>" name="nav">
<frame src="<?php echo (empty($db)) ? 'main.php3' : 'db_details.php3'; ?>?server=<?php echo $server;?>&lang=<?php echo $lang; echo (empty($db)) ? '' : '&db=' . urlencode($db); ?>" name="phpmain">
</frameset>