Removed some php 3 / MySQL 3.21 compatibility code.

This commit is contained in:
Alexander M. Turek
2003-11-20 21:50:37 +00:00
parent 6164918083
commit 3412621f5b
5 changed files with 14 additions and 10 deletions

View File

@@ -78,7 +78,7 @@ echo '&nbsp;</th>' . "\n";
</tr>
<?php
$useBgcolorOne = TRUE;
while (list($name, $value) = each($serverVars)) {
foreach ($serverVars as $name => $value) {
?>
<tr>
<td bgcolor="<?php echo $useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']; ?>">
@@ -110,4 +110,4 @@ while (list($name, $value) = each($serverVars)) {
*/
require('./footer.inc.php');
?>
?>