fix minor bug under PHP3 with space usage display

This commit is contained in:
Steve Alberty
2001-07-03 17:53:21 +00:00
parent f1e5efa918
commit 244794b8db
2 changed files with 4 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2001-07-03 Steve Alberty <alberty@neptunlabs.de>
* tbl_properties.php3: fix minor bug under PHP3 with space usage display
2001-07-02 Lo<4C>c Chapeaux <lolo@phpheaven.net> 2001-07-02 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* left.js & left.php3: font face now depends on charset (temporary fix). * left.js & left.php3: font face now depends on charset (temporary fix).

View File

@@ -205,7 +205,7 @@ if (MYSQL_MAJOR_VERSION == "3.23" && intval(MYSQL_MINOR_VERSION)>3 && $tbl_type!
echo "<td style=\"padding-right:10px;\">$strIndex</td><td align=right>".$size."</td><td>".$unit."</td>"; echo "<td style=\"padding-right:10px;\">$strIndex</td><td align=right>".$size."</td><td>".$unit."</td>";
echo "</tr>\n"; echo "</tr>\n";
// Overhead // Overhead
if (!empty($showtable["Data_free"])){ if (isset($showtable["Data_free"]) && $showtable["Data_free"]!=0){
echo "<tr bgcolor=$cfgBgcolorTwo style=\"color:#bb0000;\">\n"; echo "<tr bgcolor=$cfgBgcolorTwo style=\"color:#bb0000;\">\n";
list($size,$unit)=format_byte_down($showtable["Data_free"]); list($size,$unit)=format_byte_down($showtable["Data_free"]);
echo "<td style=\"padding-right:10px;\">"; echo "<td style=\"padding-right:10px;\">";