fixed some display bugs with right to left text direction

This commit is contained in:
Loïc Chapeaux
2001-11-15 22:20:27 +00:00
parent 72649ded42
commit 597f7ed4e2
3 changed files with 4 additions and 2 deletions

View File

@@ -10,6 +10,8 @@ $Source$
bug with SSL.
* Documentation.html: added two entries in the FAQ (IIS with advanced
authentication and Apache-SSL with IE).
* tbl_properties.php3, line 298; tbl_printview.php3, line 176: fixed some
display bugs with right to left text direction (Arabic language).
* lang/arabic.inc.php3: updated thanks to Fisal Assubieye.
2001-11-14 Lo<4C>c Chapeaux <lolo@phpheaven.net>

View File

@@ -173,7 +173,7 @@ while ($row = mysql_fetch_array($result)) {
?>
<tr bgcolor="<?php echo $bgcolor; ?>">
<td nowrap="nowrap"><?php echo $field_name; ?>&nbsp;</td>
<td<?php echo $type_nowrap; ?>><?php echo $type; ?></td>
<td<?php echo $type_nowrap; ?>><?php echo $type; ?><bdo dir="ltr"></bdo></td>
<td nowrap="nowrap"><?php echo $strAttribute; ?></td>
<td><?php echo (($row['Null'] == '') ? $strNo : $strYes); ?>&nbsp;</td>
<td nowrap="nowrap"><?php if (isset($row['Default'])) echo $row['Default']; ?>&nbsp;</td>

View File

@@ -295,7 +295,7 @@ while ($row = mysql_fetch_array($fields_rs)) {
<input type="checkbox" name="selected_fld[]" value="<?php echo urlencode($row['Field']); ?>" />
</td>
<td nowrap="nowrap">&nbsp;<?php echo $field_name; ?>&nbsp;</td>
<td<?php echo $type_nowrap; ?>><?php echo $type; ?></td>
<td<?php echo $type_nowrap; ?>><?php echo $type; ?><bdo dir="ltr"></bdo></td>
<td nowrap="nowrap"><?php echo $strAttribute; ?></td>
<td><?php echo (($row['Null'] == '') ? $strNo : $strYes); ?>&nbsp;</td>
<td nowrap="nowrap"><?php if (isset($row['Default'])) echo $row['Default']; ?>&nbsp;</td>