From b4c5dda95dbfea7f8e7551c6c378319d6a0a038d Mon Sep 17 00:00:00 2001 From: Sebastian Mendel Date: Mon, 14 May 2007 12:13:44 +0000 Subject: bug #1699772 Visual space bug in table name (in browser) --- db_qbe.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'db_qbe.php') diff --git a/db_qbe.php b/db_qbe.php index b7da986f18..2c80f6103c 100644 --- a/db_qbe.php +++ b/db_qbe.php @@ -166,7 +166,7 @@ function showColumnSelectCell($columns, $column_number, $selected = '') } echo ' '; echo '' . "\n"; + . str_replace(' ', ' ', htmlspecialchars($column)) . '' . "\n"; } ?> @@ -629,7 +629,8 @@ $strTableListOptions = ''; $numTableListOptions = 0; foreach ($tbl_names AS $key => $val) { $strTableListOptions .= ' '; - $strTableListOptions .= '' . "\n"; + $strTableListOptions .= '' . "\n"; $numTableListOptions++; } ?> -- cgit v1.2.3