bug 776436 Print view
This commit is contained in:
@@ -7,6 +7,7 @@ $Source$
|
||||
|
||||
2003-07-23 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* 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>
|
||||
* css/phpmyadmin.css.php3: Removed 'lowercase' transform
|
||||
|
@@ -12,13 +12,8 @@ if (!isset($selected_tbl)) {
|
||||
|
||||
// Check parameters
|
||||
|
||||
if (!defined('PMA_COMMON_LIB_INCLUDED')) {
|
||||
include('./libraries/common.lib.php3');
|
||||
}
|
||||
|
||||
PMA_checkParameters(array('the_tables'));
|
||||
if (!is_array($the_tables)) {
|
||||
exit();
|
||||
if (!isset($the_tables) || !is_array($the_tables)) {
|
||||
$the_tables = array();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user