fix minor bug under PHP3 with space usage display
This commit is contained in:
@@ -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).
|
||||||
|
|
||||||
|
@@ -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;\">";
|
||||||
|
Reference in New Issue
Block a user