bug 776436 Print view

This commit is contained in:
Marc Delisle
2003-07-23 18:32:03 +00:00
parent 40ed8da3ae
commit fcba0c459a
2 changed files with 3 additions and 7 deletions

View File

@@ -7,6 +7,7 @@ $Source$
2003-07-23 Marc Delisle <lem9@users.sourceforge.net> 2003-07-23 Marc Delisle <lem9@users.sourceforge.net>
* libraries/grab_globals.lib.php3: error when $_SERVER does not exist * libraries/grab_globals.lib.php3: error when $_SERVER does not exist
* tbl_printview.php3: wrong validation for path disclosure (bug 776436)
2003-07-23 Garvin Hicking <me@supergarv.de> 2003-07-23 Garvin Hicking <me@supergarv.de>
* css/phpmyadmin.css.php3: Removed 'lowercase' transform * css/phpmyadmin.css.php3: Removed 'lowercase' transform

View File

@@ -12,13 +12,8 @@ if (!isset($selected_tbl)) {
// Check parameters // Check parameters
if (!defined('PMA_COMMON_LIB_INCLUDED')) { if (!isset($the_tables) || !is_array($the_tables)) {
include('./libraries/common.lib.php3'); $the_tables = array();
}
PMA_checkParameters(array('the_tables'));
if (!is_array($the_tables)) {
exit();
} }
/** /**