bug [replication] Do not offer information_schema in the list of databases

This commit is contained in:
Marc Delisle
2010-06-29 08:14:31 -04:00
parent f463b1cc7a
commit 852ed51c27
2 changed files with 4 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
databases, thanks to Stéphane Pontier - shadow_walker
- bug #3022705 [import] Import button does not work in Catalan when there
is no progress bar possible
- bug [replication] Do not offer information_schema in the list of databases
3.3.4.0 (2010-06-28)
- bug #2996161 [import] properly escape import value

View File

@@ -72,6 +72,9 @@ function PMA_replication_db_multibox()
$multi_values .= '<select name="db_select[]" size="6" multiple="multiple" id="db_select">';
foreach ($GLOBALS['pma']->databases as $current_db) {
if ('information_schema' == $current_db) {
continue;
}
if (! empty($selectall) || (isset($tmp_select) && strpos(' ' . $tmp_select, '|' . $current_db . '|'))) {
$is_selected = ' selected="selected"';
} else {