From 8563b5a9632b5c08eb47c9e4ae6fd015b68938dc Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Thu, 8 Aug 2002 09:54:03 +0000 Subject: [PATCH] =?UTF-8?q?For=20Lo=EF=BF=BDc:=20XHTML=20fixes.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ChangeLog | 4 ++++ left.php3 | 8 ++++---- scripts/decode_bug.php3 | 6 +++--- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index e3337d15a..af1d65081 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - Changelog $Id$ $Source$ +2002-08-08 Loïc Chapeaux + * left.php3: xhtml fixes (id name must start with a letter). + * scripts/decode_bug.php3: xhtml fixes. + 2002-08-08 Alexander M. Turek * lang/spanish-*.inc.php3: - Updates, thanks again to Daniel Hinostroza; diff --git a/left.php3 b/left.php3 index 6e9893f6f..dbab42d9f 100755 --- a/left.php3 +++ b/left.php3 @@ -271,7 +271,7 @@ if ($num_dbs > 1) { <?php echo " title="" />  - +
1) { $table_list .= ' ' . "\n"; $table_list .= ' ' . $strBrowse . ': ' . $table . ' ' . "\n"; if (PMA_USR_BROWSER_AGENT == 'IE') { - $table_list .= ' ' . $table . '
' . "\n"; + $table_list .= ' ' . $table . '
' . "\n"; } else { - $table_list .= ' ' . $table . '
' . "\n"; + $table_list .= ' ' . $table . '
' . "\n"; } } // end for $t (tables list) @@ -415,7 +415,7 @@ else if ($num_dbs == 1) { ?> <?php echo " title="" />  - +
' . "\n" - . '
' . $textdata . '

' . "\n"; + return '
' . $textdata . '

'; } // end of the "PMA_printDecodedBug()" function @@ -98,7 +97,8 @@ if (!empty($bug_encoded)) { $result = PMA_printDecodedBug($bug_decoded); } // end if... else... - echo '

' . "\n" . $result . '

' . "\n"; + echo '

Decoded:

' . "\n" + . $result . "\n"; } // end if ?>