diff --git a/ChangeLog b/ChangeLog index 7a7b860e5..f8c2cecd6 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2001-07-03 Steve Alberty + * tbl_properties.php3: fix minor bug under PHP3 with space usage display + 2001-07-02 Loïc Chapeaux * left.js & left.php3: font face now depends on charset (temporary fix). diff --git a/tbl_properties.php3 b/tbl_properties.php3 index 3447ce54a..6e79ceb7d 100755 --- a/tbl_properties.php3 +++ b/tbl_properties.php3 @@ -205,7 +205,7 @@ if (MYSQL_MAJOR_VERSION == "3.23" && intval(MYSQL_MINOR_VERSION)>3 && $tbl_type! echo "$strIndex".$size."".$unit.""; echo "\n"; // Overhead - if (!empty($showtable["Data_free"])){ + if (isset($showtable["Data_free"]) && $showtable["Data_free"]!=0){ echo "\n"; list($size,$unit)=format_byte_down($showtable["Data_free"]); echo "";