uninitialized var
This commit is contained in:
parent
9d1f2028e8
commit
3698cbd4ae
@ -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:
|
||||
|
||||
@ -571,7 +571,10 @@ if ($num_tables > 0
|
||||
} // end if
|
||||
|
||||
// is this OK to check for 'class' support?
|
||||
$takeaway = $url_query . '&table=' . urlencode($table);
|
||||
if ($num_tables > 0) {
|
||||
$takeaway = $url_query . '&table=' . urlencode($table);
|
||||
}
|
||||
|
||||
if ($cfgRelation['pdfwork'] && $num_tables > 0) {
|
||||
?>
|
||||
<!-- Work on PDF Pages -->
|
||||
|
||||
Loading…
Reference in New Issue
Block a user