Avoid warnings on undefined variables
This commit is contained in:
@@ -200,11 +200,12 @@ class PMA_User_Schema
|
|||||||
$selectboxall[] = $val[0];
|
$selectboxall[] = $val[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$tabExist = array();
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Now if we already have chosen a page number then we should
|
* Now if we already have chosen a page number then we should
|
||||||
* show the tables involved
|
* show the tables involved
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (isset($this->chosenPage) && $this->chosenPage > 0) {
|
if (isset($this->chosenPage) && $this->chosenPage > 0) {
|
||||||
echo "\n";
|
echo "\n";
|
||||||
?>
|
?>
|
||||||
@@ -496,7 +497,7 @@ class PMA_User_Schema
|
|||||||
// the table has been dropped from outside phpMyAdmin
|
// the table has been dropped from outside phpMyAdmin
|
||||||
if (PMA_DBI_getError()) {
|
if (PMA_DBI_getError()) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
echo '<div id="table_' . $i . '" class="pdflayout_table"><u>' . $temp_sh_page['table_name'] . '</u>';
|
echo '<div id="table_' . $i . '" class="pdflayout_table"><u>' . $temp_sh_page['table_name'] . '</u>';
|
||||||
if (isset($with_field_names)) {
|
if (isset($with_field_names)) {
|
||||||
while ($row = PMA_DBI_fetch_assoc($fields_rs)) {
|
while ($row = PMA_DBI_fetch_assoc($fields_rs)) {
|
||||||
|
Reference in New Issue
Block a user