From d55364116702d6baa4077fbeb86e4087164045ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Chapeaux?= Date: Sat, 27 Apr 2002 17:40:56 +0000 Subject: [PATCH] xhtml fixes --- ChangeLog | 1 + header.inc.php3 | 10 +++++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 894b57432..057a4a432 100755 --- a/ChangeLog +++ b/ChangeLog @@ -25,6 +25,7 @@ $Source$ relation table. * tbl_printview.php3; tbl_qbe.php3: optimization, warnings and coding standards. + * header.inc.php3, lines 166-172: xhtml fixes. * Compressed ChangeLog till the 2.2.6 release. 2002-04-26 Loïc Chapeaux diff --git a/header.inc.php3 b/header.inc.php3 index 30e0e2433..7b9bd9a05 100755 --- a/header.inc.php3 +++ b/header.inc.php3 @@ -159,12 +159,16 @@ echo "\n"; ' . $strDatabase . ' ' . htmlspecialchars($db) . ''; + echo '

' . "\n"; + echo ' ' . $strDatabase . ' ' . htmlspecialchars($db) . '' . "\n"; if (!empty($table)) { - echo ' - ' . $strTable . ' ' . htmlspecialchars($table) . ''; + echo ' - ' . $strTable . ' ' . htmlspecialchars($table) . '' . "\n"; } - echo ' ' . sprintf($strRunning, ' ' . (($cfg['Server']['verbose']) ? $cfg['Server']['verbose'] : $cfg['Server']['host']) . ''); + echo ' ' . sprintf($strRunning, ' ' . (($cfg['Server']['verbose']) ? $cfg['Server']['verbose'] : $cfg['Server']['host']) . '') . "\n"; echo '

' . "\n"; } echo "\n";