bug #632515
This commit is contained in:
@@ -6,6 +6,9 @@ $Id$
|
||||
$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>
|
||||
* libraries/sqlparser.lib.php3, libraries/display_tbl.lib.php3,
|
||||
sql.php3: analyzer for db, table, column, alias, with additional
|
||||
|
@@ -1,5 +1,4 @@
|
||||
<?php
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
/**
|
||||
@@ -242,7 +241,7 @@ while ($row=mysql_fetch_array($rowset)) {
|
||||
echo "\n";
|
||||
if ($have_rel) {
|
||||
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 ' </td>' . "\n";
|
||||
@@ -276,14 +275,15 @@ echo '<br><br> <input type="button" style="visibility:;width:100px;height:2
|
||||
require('./footer.inc.php3');
|
||||
?>
|
||||
<script type="text/javascript" language="javascript1.2">
|
||||
<!--
|
||||
function printPage()
|
||||
{
|
||||
document.all.print.style.visibility='hidden';
|
||||
<!--
|
||||
// Do print the page
|
||||
if (typeof(window.print) != 'undefined') {
|
||||
window.print();
|
||||
document.all.print.style.visibility='hidden';
|
||||
// Do print the page
|
||||
if (typeof(window.print) != 'undefined') {
|
||||
window.print();
|
||||
}
|
||||
document.all.print.style.visibility='';
|
||||
}
|
||||
document.all.print.style.visibility='';
|
||||
//-->
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user