This commit is contained in:
Alexander M. Turek
2003-02-17 22:29:43 +00:00
parent 99f6fa1aa4
commit bf5073391e
2 changed files with 2 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ $Source$
- Reformulated some passages; - Reformulated some passages;
- FAQ 1.28. - FAQ 1.28.
* ANNOUNCE.txt: Synchronized features list with documentation. * ANNOUNCE.txt: Synchronized features list with documentation.
* server_databases.php3: Fixed bug #688271 (missing "?").
2003-02-17 Garvin Hicking <me@supergarv.de> 2003-02-17 Garvin Hicking <me@supergarv.de>
* tbl_replace_fields.php3, read_dump.php3, libraries/common.lib.php3: * tbl_replace_fields.php3, read_dump.php3, libraries/common.lib.php3:

View File

@@ -230,7 +230,7 @@ if (count($statistics) > 0) {
. ' <input type="checkbox" name="selected_db[]" title="' . htmlspecialchars($current['db_name']) . '" value="' . htmlspecialchars($current['db_name']) . '" ' . (empty($checkall) ? '' : 'checked="checked" ') . '/>' . "\n" . ' <input type="checkbox" name="selected_db[]" title="' . htmlspecialchars($current['db_name']) . '" value="' . htmlspecialchars($current['db_name']) . '" ' . (empty($checkall) ? '' : 'checked="checked" ') . '/>' . "\n"
. ' </td>' . "\n" . ' </td>' . "\n"
. ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n" . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
. ' <a href="' . $cfg['DefaultTabDatabase'] . $url_query . '&amp;db=' . urlencode($current['db_name']) . '" title="' . sprintf($strJumpToDB, htmlspecialchars($current['db_name'])) . '">' . "\n" . ' <a href="' . $cfg['DefaultTabDatabase'] . '?' . $url_query . '&amp;db=' . urlencode($current['db_name']) . '" title="' . sprintf($strJumpToDB, htmlspecialchars($current['db_name'])) . '">' . "\n"
. ' ' . htmlspecialchars($current['db_name']) . "\n" . ' ' . htmlspecialchars($current['db_name']) . "\n"
. ' </a>' . "\n" . ' </a>' . "\n"
. ' </td>' . "\n"; . ' </td>' . "\n";