Skip to content

Commit

Permalink
Avoid warnings on undefined variables
Browse files Browse the repository at this point in the history
  • Loading branch information
madhuracj committed Oct 8, 2011
1 parent 55f2d07 commit 329c9ca
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions libraries/schema/User_Schema.class.php
Expand Up @@ -200,11 +200,12 @@ public function showTableDashBoard()
$selectboxall[] = $val[0];
}

$tabExist = array();

/*
* Now if we already have chosen a page number then we should
* show the tables involved
*/

if (isset($this->chosenPage) && $this->chosenPage > 0) {
echo "\n";
?>
Expand Down Expand Up @@ -496,7 +497,7 @@ private function _displayScratchboardTables($array_sh_page)
// the table has been dropped from outside phpMyAdmin
if (PMA_DBI_getError()) {
continue;
}
}
echo '<div id="table_' . $i . '" class="pdflayout_table"><u>' . $temp_sh_page['table_name'] . '</u>';
if (isset($with_field_names)) {
while ($row = PMA_DBI_fetch_assoc($fields_rs)) {
Expand Down

0 comments on commit 329c9ca

Please sign in to comment.