left.php3: Fixed bug #468749: Left Frame not expanding in iCab
This commit is contained in:
@@ -5,6 +5,12 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2001-10-08 Geert Lund <glund@silversoft.dk>
|
||||
* left.php3: Fixed bug #468749: Left Frame not expanding in iCab
|
||||
* made URI references HTML 4.01 complient, this will fix the
|
||||
error. See http://www.w3.org/TR/html4/appendix/notes.html#h-B.2.2 and
|
||||
http://www.icab.de/faq.html for further information.
|
||||
|
||||
2001-10-07 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
||||
* config.inc.php3, lines 152-153; Documentation.html, lines 573-581;
|
||||
header.inc.php3, line 119; left.php3, line 150: the background colors for
|
||||
|
18
left.php3
18
left.php3
@@ -150,7 +150,7 @@ echo "\n";
|
||||
<body bgcolor="<?php echo $cfgLeftBgColor; ?>">
|
||||
<!-- Link to the welcome page -->
|
||||
<div id="el1Parent" class="parent" style="margin-bottom: 5px">
|
||||
<nobr><a class="item" href="main.php3?lang=<?php echo $lang; ?>&server=<?php echo $server; ?>">
|
||||
<nobr><a class="item" href="main.php3?lang=<?php echo $lang; ?>&server=<?php echo $server; ?>">
|
||||
<span class="heada"><b><?php echo $strHome; ?></b></span></a></nobr>
|
||||
</div>
|
||||
|
||||
@@ -178,8 +178,8 @@ if ($num_dbs > 1) {
|
||||
$tables = @mysql_list_tables($db);
|
||||
$num_tables = @mysql_numrows($tables);
|
||||
$common_url_query = 'lang=' . $lang
|
||||
. '&server=' . $server
|
||||
. '&db=' . urlencode($db);
|
||||
. '&server=' . $server
|
||||
. '&db=' . urlencode($db);
|
||||
if ($num_tables) {
|
||||
$num_tables_disp = $num_tables;
|
||||
} else {
|
||||
@@ -228,9 +228,9 @@ if ($num_dbs > 1) {
|
||||
echo "\n";
|
||||
?>
|
||||
<nobr><img src="images/spacer.gif" border="0" width="9" height="9" alt="" />
|
||||
<a target="phpmain" href="sql.php3?<?php echo $common_url_query; ?>&table=<?php echo urlencode($table); ?>&sql_query=<?php echo urlencode('SELECT * FROM ' . backquote($table)); ?>&pos=0&goto=tbl_properties.php3">
|
||||
<a target="phpmain" href="sql.php3?<?php echo $common_url_query; ?>&table=<?php echo urlencode($table); ?>&sql_query=<?php echo urlencode('SELECT * FROM ' . backquote($table)); ?>&pos=0&goto=tbl_properties.php3">
|
||||
<img src="images/browse.gif" border="0" alt="<?php echo "$strBrowse: $table"; ?>" /></a>
|
||||
<a class="tblItem" title="<?php echo str_replace('"', '"', $tooltip[md5($table)]); ?>" target="phpmain" href="tbl_properties.php3?<?php echo $common_url_query; ?>&table=<?php echo urlencode($table); ?>">
|
||||
<a class="tblItem" title="<?php echo str_replace('"', '"', $tooltip[md5($table)]); ?>" target="phpmain" href="tbl_properties.php3?<?php echo $common_url_query; ?>&table=<?php echo urlencode($table); ?>">
|
||||
<?php echo $table; ?></a></nobr><br />
|
||||
<?php
|
||||
} // end for $j (tables list)
|
||||
@@ -264,8 +264,8 @@ else if ($num_dbs == 1) {
|
||||
$tables = @mysql_list_tables($db);
|
||||
$num_tables = @mysql_numrows($tables);
|
||||
$common_url_query = 'lang=' . $lang
|
||||
. '&server=' . $server
|
||||
. '&db=' . urlencode($db);
|
||||
. '&server=' . $server
|
||||
. '&db=' . urlencode($db);
|
||||
if ($num_tables) {
|
||||
$num_tables_disp = $num_tables;
|
||||
} else {
|
||||
@@ -297,9 +297,9 @@ else if ($num_dbs == 1) {
|
||||
$table = mysql_tablename($tables, $j);
|
||||
echo "\n";
|
||||
?>
|
||||
<nobr><a target="phpmain" href="sql.php3?<?php echo $common_url_query; ?>&table=<?php echo urlencode($table); ?>&sql_query=<?php echo urlencode('SELECT * FROM ' . backquote($table)); ?>&pos=0&goto=tbl_properties.php3">
|
||||
<nobr><a target="phpmain" href="sql.php3?<?php echo $common_url_query; ?>&table=<?php echo urlencode($table); ?>&sql_query=<?php echo urlencode('SELECT * FROM ' . backquote($table)); ?>&pos=0&goto=tbl_properties.php3">
|
||||
<img src="images/browse.gif" border="0" alt="<?php echo "$strBrowse: $table"; ?>" /></a>
|
||||
<a class="tblItem" title="<?php echo str_replace('"', '"', $tooltip[md5($table)]); ?>" target="phpmain" href="tbl_properties.php3?<?php echo $common_url_query; ?>&table=<?php echo urlencode($table); ?>">
|
||||
<a class="tblItem" title="<?php echo str_replace('"', '"', $tooltip[md5($table)]); ?>" target="phpmain" href="tbl_properties.php3?<?php echo $common_url_query; ?>&table=<?php echo urlencode($table); ?>">
|
||||
<?php echo $table; ?></a></nobr><br />
|
||||
<?php
|
||||
} // end for $j (tables list)
|
||||
|
Reference in New Issue
Block a user