align values for More status variables

This commit is contained in:
Marc Delisle
2003-08-10 20:11:17 +00:00
parent 741f538a16
commit 678cfa2693
2 changed files with 3 additions and 2 deletions

View File

@@ -6,7 +6,8 @@ $Id$
$Source$
2003-08-10 Marc Delisle <lem9@users.sourceforge.net>
* server_status.php3: bug 786331, a 100,00% not internationalized
* server_status.php3: bug 786331, a 100,00% not internationalized,
and align values for "More status variables"
2003-08-09 Marc Delisle <lem9@users.sourceforge.net>
* libraries/auth/cookie.auth.lib.php3: Cookies required message

View File

@@ -247,7 +247,7 @@ if (!empty($serverStatus)) {
?>
<tr>
<td bgcolor="<?php echo $useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']; ?>">&nbsp;<?php echo htmlspecialchars(str_replace('_', ' ', $name)); ?>&nbsp;</td>
<td bgcolor="<?php echo $useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']; ?>">&nbsp;<?php echo htmlspecialchars($value); ?>&nbsp;</td>
<td bgcolor="<?php echo $useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']; ?>" align="right">&nbsp;<?php echo htmlspecialchars($value); ?>&nbsp;</td>
</tr>
<?php
$useBgcolorOne = !$useBgcolorOne;