Fixed bug #523772 - Parse Error in tbl_printview.php

This commit is contained in:
Loïc Chapeaux
2002-02-28 20:19:05 +00:00
parent 7c7b32885e
commit 67132a941c
2 changed files with 8 additions and 2 deletions

View File

@@ -5,8 +5,13 @@ phpMyAdmin - Changelog
$Id$
$Source$
2002-02-28 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* Documentation.html: fixed xhtml1.0 errors.
* tbl_printview.php3, lines 328-329: fixed bug #523772 - Parse Error in
tbl_printview.php, thanks to Joshua Nye <josh at boxcarmedia.com>.
2002-02-27 Marc Delisle <lem9@users.sourceforge.net>
* Documentation.html: new faq about letting users create their dbs
* Documentation.html: new faq about letting users create their dbs.
2002-02-27 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* libraries/common.lib.php3, lines 146-164: back to previous version.

View File

@@ -325,7 +325,8 @@ while (list($key, $table) = each($the_tables)) {
list($free_size, $free_unit) = PMA_formatByteDown($showtable['Data_free']);
list($effect_size, $effect_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length'] - $showtable['Data_free']);
} else {
unset($free_size, $free_unit);
unset($free_size);
unset($free_unit);
list($effect_size, $effect_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length']);
}
list($tot_size, $tot_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length']);