undefined variable when synchronizing with current server

This commit is contained in:
Marc Delisle
2009-10-03 21:14:57 +00:00
parent 0ad129ef05
commit fb6667d551

View File

@@ -61,6 +61,7 @@ if ((isset($_REQUEST['submit_connect']))) {
if (${"{$con}_type"} == 'cur') { if (${"{$con}_type"} == 'cur') {
${"{$con}_connection"} = null; ${"{$con}_connection"} = null;
${"{$con}_server"} = null;
${"{$con}_db"} = $_REQUEST[$con.'_db_sel']; ${"{$con}_db"} = $_REQUEST[$con.'_db_sel'];
continue; continue;
} }
@@ -76,7 +77,7 @@ if ((isset($_REQUEST['submit_connect']))) {
${"{$con}_connection"} = PMA_DBI_connect(${"{$con}_username"}, ${"{$con}_password"}, $is_controluser = false, ${"{$con}_server"}); ${"{$con}_connection"} = PMA_DBI_connect(${"{$con}_username"}, ${"{$con}_password"}, $is_controluser = false, ${"{$con}_server"});
} // end foreach ($cons as $con) } // end foreach ($cons as $con)
if ((! $src_connection && $src_type=='rmt') || (! $trg_connection && $trg_type=='rmt')) { if ((! $src_connection && $src_type=='rmt') || (! $trg_connection && $trg_type=='rmt')) {
/** /**
* Displays the connection error string if * Displays the connection error string if