fixed some display bugs with right to left text direction

This commit is contained in:
Loïc Chapeaux
2001-11-13 10:54:34 +00:00
parent 5eab790946
commit 3572825318
3 changed files with 8 additions and 4 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2001-11-13 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* db_details.php3; left.php3; tbl_properties.php3: fixed some display bugs
with right to left text direction (Arabic language).
2001-11-12 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* libraries/select_lang.lib.php3; lang/arabic.inc.php3: new translation
thanks to Fisal Assubieye.

View File

@@ -266,7 +266,7 @@ else if (MYSQL_INT_VERSION >= 32300) {
?>
<td align="right" nowrap="nowrap">
&nbsp;&nbsp;
<a href="tbl_properties.php3?<?php echo $url_query; ?>#showusage"><?php echo $formated_size . '<bdo dir="' . $text_dir . '"> </bdo>' . $unit; ?></a>
<a href="tbl_properties.php3?<?php echo $url_query; ?>#showusage"><?php echo $formated_size . ' ' . $unit; ?></a>
</td>
<?php
echo "\n";
@@ -309,7 +309,7 @@ else if (MYSQL_INT_VERSION >= 32300) {
?>
<th align="right" nowrap="nowrap">
&nbsp;
<b><?php echo $sum_formated . '<bdo dir="' . $text_dir . '"> </bdo>' . $unit; ?></b>
<b><?php echo $sum_formated . ' ' . $unit; ?></b>
</th>
<?php
}

View File

@@ -550,7 +550,7 @@ if ($cfgShowStats) {
?>
<tr bgcolor="<?php echo ((++$i%2) ? $cfgBgcolorTwo : $cfgBgcolorOne); ?>">
<td><?php echo ucfirst($strFormat); ?></td>
<td align="<?php echo $cell_align_right; ?>" nowrap="nowrap">
<td align="<?php echo $cell_align_left; ?>" nowrap="nowrap">
<?php
echo ' ';
if ($showtable['Row_format'] == 'Fixed') {
@@ -596,7 +596,7 @@ if ($cfgShowStats) {
<tr bgcolor="<?php echo ((++$i%2) ? $cfgBgcolorTwo : $cfgBgcolorOne); ?>">
<td><?php echo ucfirst($strRowSize); ?>&nbsp;&oslash;</td>
<td align="right" nowrap="nowrap">
<?php echo $avg_size . '<bdo dir="' . $text_dir . '"> </bdo>' . $avg_unit . "\n"; ?>
<?php echo $avg_size . ' ' . $avg_unit . "\n"; ?>
</td>
</tr>
<?php