This commit is contained in:
Alexander M. Turek
2002-11-02 10:15:21 +00:00
parent 39688989a6
commit 01d7338b4f
2 changed files with 33 additions and 30 deletions

View File

@@ -6,6 +6,9 @@ $Id$
$Source$ $Source$
2002-11-02 Alexander M. Turek <rabus@users.sourceforge.net>
* db_datadict.php3: Fixed bug #632515 (JS error in data dictonary).
2002-11-01 Marc Delisle <lem9@users.sourceforge.net> 2002-11-01 Marc Delisle <lem9@users.sourceforge.net>
* libraries/sqlparser.lib.php3, libraries/display_tbl.lib.php3, * libraries/sqlparser.lib.php3, libraries/display_tbl.lib.php3,
sql.php3: analyzer for db, table, column, alias, with additional sql.php3: analyzer for db, table, column, alias, with additional

View File

@@ -1,5 +1,4 @@
<?php <?php
/* $Id$ */ /* $Id$ */
/** /**
@@ -242,7 +241,7 @@ while ($row=mysql_fetch_array($rowset)) {
echo "\n"; echo "\n";
if ($have_rel) { if ($have_rel) {
echo ' <td width=50 class="print" >'; echo ' <td width=50 class="print" >';
if (isset($res_rel[$field_name])) { if (isset($res_rel[$field_name])) {
echo htmlspecialchars($res_rel[$field_name]['foreign_table'] . ' -> ' . $res_rel[$field_name]['foreign_field'] ); echo htmlspecialchars($res_rel[$field_name]['foreign_table'] . ' -> ' . $res_rel[$field_name]['foreign_field'] );
} }
echo '&nbsp;</td>' . "\n"; echo '&nbsp;</td>' . "\n";
@@ -276,14 +275,15 @@ echo '<br><br>&nbsp;<input type="button" style="visibility:;width:100px;height:2
require('./footer.inc.php3'); require('./footer.inc.php3');
?> ?>
<script type="text/javascript" language="javascript1.2"> <script type="text/javascript" language="javascript1.2">
<!--
function printPage() function printPage()
{ {
document.all.print.style.visibility='hidden'; document.all.print.style.visibility='hidden';
<!-- // Do print the page
// Do print the page if (typeof(window.print) != 'undefined') {
if (typeof(window.print) != 'undefined') { window.print();
window.print(); }
document.all.print.style.visibility='';
} }
document.all.print.style.visibility='';
//--> //-->
</script> </script>