For Lo�c: xhtml fixes.
This commit is contained in:
@@ -7,7 +7,8 @@ $Source$
|
|||||||
|
|
||||||
2002-08-08 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
2002-08-08 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
||||||
* left.php3: xhtml fixes (id name must start with a letter).
|
* left.php3: xhtml fixes (id name must start with a letter).
|
||||||
* scripts/decode_bug.php3: xhtml fixes.
|
* pdf_pages.php3, tbl_printview.php3, tbl_realtion.php3,
|
||||||
|
scripts/decode_bug.php3: xhtml fixes.
|
||||||
|
|
||||||
2002-08-08 Alexander M. Turek <rabus@users.sourceforge.net>
|
2002-08-08 Alexander M. Turek <rabus@users.sourceforge.net>
|
||||||
* lang/spanish-*.inc.php3:
|
* lang/spanish-*.inc.php3:
|
||||||
|
@@ -252,7 +252,7 @@ if ($cfgRelation['pdfwork']) {
|
|||||||
echo "\n" . ' </tr>';
|
echo "\n" . ' </tr>';
|
||||||
echo "\n" . ' </table>' . "\n";
|
echo "\n" . ' </table>' . "\n";
|
||||||
|
|
||||||
echo "\n" . ' <input type="hidden" name="c_table_rows" value="' . ($i + 1) . '">';
|
echo "\n" . ' <input type="hidden" name="c_table_rows" value="' . ($i + 1) . '" />';
|
||||||
echo "\n" . ' <input type="submit" value="' . $strGo . '" />';
|
echo "\n" . ' <input type="submit" value="' . $strGo . '" />';
|
||||||
echo "\n" . '</form>' . "\n\n";
|
echo "\n" . '</form>' . "\n\n";
|
||||||
} // end if
|
} // end if
|
||||||
|
@@ -194,13 +194,13 @@ while (list($key, $table) = each($the_tables)) {
|
|||||||
<th><?php echo ucfirst($strDefault); ?></th>
|
<th><?php echo ucfirst($strDefault); ?></th>
|
||||||
<th><?php echo ucfirst($strExtra); ?></th>
|
<th><?php echo ucfirst($strExtra); ?></th>
|
||||||
<?php
|
<?php
|
||||||
|
echo "\n";
|
||||||
if ($have_rel) {
|
if ($have_rel) {
|
||||||
echo '<th>' . ucfirst($strLinksTo) . '</th>';
|
echo ' <th>' . ucfirst($strLinksTo) . '</th>' . "\n";
|
||||||
}
|
}
|
||||||
if ($cfgRelation['commwork']) {
|
if ($cfgRelation['commwork']) {
|
||||||
echo '<th>' . ucfirst($strComments) . '</th>';
|
echo ' <th>' . ucfirst($strComments) . '</th>' . "\n";
|
||||||
}
|
}
|
||||||
echo "\n";
|
|
||||||
?>
|
?>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
@@ -266,20 +266,20 @@ while (list($key, $table) = each($the_tables)) {
|
|||||||
<td bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap"><?php if (isset($row['Default'])) echo $row['Default']; ?> </td>
|
<td bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap"><?php if (isset($row['Default'])) echo $row['Default']; ?> </td>
|
||||||
<td bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap"><?php echo $row['Extra']; ?> </td>
|
<td bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap"><?php echo $row['Extra']; ?> </td>
|
||||||
<?php
|
<?php
|
||||||
|
echo "\n";
|
||||||
if ($have_rel) {
|
if ($have_rel) {
|
||||||
echo '<td bgcolor="' . $bgcolor . '" nowrap="nowrap">';
|
echo ' <td bgcolor="' . $bgcolor . '" nowrap="nowrap">';
|
||||||
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 ' </td>';
|
echo ' </td>' . "\n";
|
||||||
}
|
}
|
||||||
echo "\n";
|
if ($cfgRelation['commwork']) {
|
||||||
if($cfgRelation['commwork']) {
|
echo ' <td bgcolor="' . $bgcolor . '" nowrap="nowrap">';
|
||||||
echo '<td bgcolor="' . $bgcolor . '" nowrap="nowrap">';
|
if (isset($comments[$field_name])) {
|
||||||
if(isset($comments[$field_name])) {
|
|
||||||
echo htmlspecialchars($comments[$field_name]);
|
echo htmlspecialchars($comments[$field_name]);
|
||||||
}
|
}
|
||||||
echo ' </td>';
|
echo ' </td>' . "\n";
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -561,8 +561,8 @@ while (list($key, $table) = each($the_tables)) {
|
|||||||
unset($num_rows);
|
unset($num_rows);
|
||||||
unset($show_comment);
|
unset($show_comment);
|
||||||
echo '<hr />' . "\n";
|
echo '<hr />' . "\n";
|
||||||
echo '</div>' . "\n";
|
|
||||||
} // end if
|
} // end if
|
||||||
|
echo '</div>' . "\n";
|
||||||
|
|
||||||
} // end while
|
} // end while
|
||||||
|
|
||||||
|
@@ -265,15 +265,15 @@ if ($col_rs && mysql_num_rows($col_rs) > 0) {
|
|||||||
|
|
||||||
echo "\n";
|
echo "\n";
|
||||||
?>
|
?>
|
||||||
<form method="post" action="tbl_relation.php3" onchange="this.form.submit();">
|
<form method="post" action="tbl_relation.php3">
|
||||||
<input type="hidden" name="lang" value="<?php echo $lang; ?>" />
|
<input type="hidden" name="lang" value="<?php echo $lang; ?>" />
|
||||||
<input type="hidden" name="server" value="<?php echo $server; ?>" />
|
<input type="hidden" name="server" value="<?php echo $server; ?>" />
|
||||||
<input type="hidden" name="db" value="<?php echo $db; ?>" />
|
<input type="hidden" name="db" value="<?php echo $db; ?>" />
|
||||||
<input type="hidden" name="table" value="<?php echo $table; ?>" />
|
<input type="hidden" name="table" value="<?php echo $table; ?>" />
|
||||||
<input type="hidden" name="submit_show" value="true" />
|
<input type="hidden" name="submit_show" value="true" />
|
||||||
|
|
||||||
<p><?php echo $strChangeDisplay; ?></P>
|
<p><?php echo $strChangeDisplay; ?></p>
|
||||||
<select name="display_field">
|
<select name="display_field" onchange="this.form.submit();">
|
||||||
<?php
|
<?php
|
||||||
echo "\n";
|
echo "\n";
|
||||||
mysql_data_seek($col_rs, 0);
|
mysql_data_seek($col_rs, 0);
|
||||||
@@ -286,7 +286,13 @@ if ($col_rs && mysql_num_rows($col_rs) > 0) {
|
|||||||
} // end while
|
} // end while
|
||||||
?>
|
?>
|
||||||
</select>
|
</select>
|
||||||
|
<script type="text/javascript" language="javascript">
|
||||||
|
<!--
|
||||||
|
// Fake js to allow the use of the <noscript> tag //-->
|
||||||
|
</script>
|
||||||
|
<noscript>
|
||||||
<input type="submit" value="<?php echo $strGo; ?>" />
|
<input type="submit" value="<?php echo $strGo; ?>" />
|
||||||
|
</noscript>
|
||||||
</form>
|
</form>
|
||||||
<?php
|
<?php
|
||||||
} // end if (displayworks)
|
} // end if (displayworks)
|
||||||
@@ -314,7 +320,7 @@ if ($col_rs && mysql_num_rows($col_rs) > 0) {
|
|||||||
<tr>
|
<tr>
|
||||||
<th><?php echo $field; ?></th>
|
<th><?php echo $field; ?></th>
|
||||||
<td>
|
<td>
|
||||||
<input type="text" name="comment[<?php echo $field;?>]" value="<?php echo htmlspecialchars($comments[$field]); ?>">
|
<input type="text" name="comment[<?php echo $field;?>]" value="<?php echo htmlspecialchars($comments[$field]); ?>" />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php
|
<?php
|
||||||
|
Reference in New Issue
Block a user