changed columnwidths.

This commit is contained in:
Mike Beck
2002-12-06 16:11:48 +00:00
parent b6411751a0
commit c10eb1bf5b

View File

@@ -166,15 +166,15 @@ while ($row = mysql_fetch_array($rowset)) {
<table width="100%" bordercolorlight="black" border="border" style="border-collapse: collapse;background-color: white"> <table width="100%" bordercolorlight="black" border="border" style="border-collapse: collapse;background-color: white">
<tr> <tr>
<th width="50"><?php echo $strField; ?></th> <th width="50"><?php echo $strField; ?></th>
<th width="50"><?php echo $strType; ?></th> <th width="80"><?php echo $strType; ?></th>
<!--<th width="50"><?php echo $strAttr; ?></th>--> <!--<th width="50"><?php echo $strAttr; ?></th>-->
<th width="50"><?php echo $strNull; ?></th> <th width="40"><?php echo $strNull; ?></th>
<th width="50"><?php echo $strDefault; ?></th> <th width="70"><?php echo $strDefault; ?></th>
<!--<th width="50"><?php echo $strExtra; ?></th>--> <!--<th width="50"><?php echo $strExtra; ?></th>-->
<?php <?php
echo "\n"; echo "\n";
if ($have_rel) { if ($have_rel) {
echo ' <th width="50">' . $strLinksTo . '</th>' . "\n"; echo ' <th>' . $strLinksTo . '</th>' . "\n";
} }
if ($cfgRelation['commwork']) { if ($cfgRelation['commwork']) {
echo ' <th>' . $strComments . '</th>' . "\n"; echo ' <th>' . $strComments . '</th>' . "\n";
@@ -239,15 +239,15 @@ while ($row = mysql_fetch_array($rowset)) {
} }
?> ?>
</td> </td>
<td width="50" class="print"<?php echo $type_nowrap; ?>><?php echo $type; ?><bdo dir="ltr"></bdo></td> <td width="80" class="print"<?php echo $type_nowrap; ?>><?php echo $type; ?><bdo dir="ltr"></bdo></td>
<!--<td width="50" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap"><?php echo $strAttribute; ?></td>--> <!--<td width="50" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap"><?php echo $strAttribute; ?></td>-->
<td width="50" class="print"><?php echo (($row['Null'] == '') ? $strNo : $strYes); ?>&nbsp;</td> <td width="40" class="print"><?php echo (($row['Null'] == '') ? $strNo : $strYes); ?>&nbsp;</td>
<td width="50" class="print" nowrap="nowrap"><?php if (isset($row['Default'])) echo $row['Default']; ?>&nbsp;</td> <td width="70" class="print" nowrap="nowrap"><?php if (isset($row['Default'])) echo $row['Default']; ?>&nbsp;</td>
<!--<td width="50" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap"><?php echo $row['Extra']; ?>&nbsp;</td>--> <!--<td width="50" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap"><?php echo $row['Extra']; ?>&nbsp;</td>-->
<?php <?php
echo "\n"; echo "\n";
if ($have_rel) { if ($have_rel) {
echo ' <td width="50" class="print">'; echo ' <td 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']);
} }