Skip to content

Commit

Permalink
bug [replication] Do not offer information_schema in the list of data…
Browse files Browse the repository at this point in the history
…bases
  • Loading branch information
lem9 committed Jun 29, 2010
1 parent f463b1c commit 852ed51
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions libraries/replication_gui.lib.php
Expand Up @@ -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 {
Expand Down

0 comments on commit 852ed51

Please sign in to comment.