uninitialized var

This commit is contained in:
Garvin Hicking 2003-04-29 16:05:10 +00:00
parent 9d1f2028e8
commit 3698cbd4ae
2 changed files with 5 additions and 1 deletions

View File

@ -12,6 +12,7 @@ $Source$
* tbl_move_copy.php3: Bug #729416
* tbl_query_box.php3, queryframe.php3: Bug #729446, maybe #728571
* index.php3: Typo
* db_details_structure.php3: Prevent uninitialized variable
2003-04-28 Garvin Hicking <me@supergarv.de>
* index.php3, queryframe.php3, tbl_query_box.php3, querywindow.php3:

View File

@ -571,7 +571,10 @@ if ($num_tables > 0
} // end if
// is this OK to check for 'class' support?
$takeaway = $url_query . '&amp;table=' . urlencode($table);
if ($num_tables > 0) {
$takeaway = $url_query . '&amp;table=' . urlencode($table);
}
if ($cfgRelation['pdfwork'] && $num_tables > 0) {
?>
<!-- Work on PDF Pages -->