bug #1699772 Visual space bug in table name (in browser)

This commit is contained in:
Sebastian Mendel
2007-05-14 12:13:44 +00:00
parent 84b9a15a0e
commit b4c5dda95d
6 changed files with 14 additions and 11 deletions

View File

@@ -50,7 +50,8 @@ foreach ($tables as $each_table) {
}
$table_html = htmlspecialchars($each_table['Name']);
$multi_values .= ' <option value="' . $table_html . '"'
. $is_selected . '>' . $table_html . '</option>' . "\n";
. $is_selected . '>'
. str_replace(' ', '&nbsp;', $table_html) . '</option>' . "\n";
} // end for
$multi_values .= "\n";
$multi_values .= '</select></div>';