Fixed bug #523772 - Parse Error in tbl_printview.php
This commit is contained in:
@@ -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.
|
||||
|
@@ -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']);
|
||||
|
Reference in New Issue
Block a user