diff --git a/ChangeLog b/ChangeLog index 3bb635dda9..cd5652a6cb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -17,6 +17,7 @@ phpMyAdmin - ChangeLog - bug #4630 AJAX request infinite loop - bug #4649 Attributes field size smaller than others - bug #4622 Cannot remove table ordering on a Mac +- bug Fix initial replication configuration 4.3.2.0 (2014-12-12) - bug #4628 PHP error while exporting schema as PDF diff --git a/libraries/replication_gui.lib.php b/libraries/replication_gui.lib.php index c301756c91..a7acd035ea 100644 --- a/libraries/replication_gui.lib.php +++ b/libraries/replication_gui.lib.php @@ -975,7 +975,7 @@ function PMA_handleRequestForSlaveChangeMaster() $_SESSION['replication']['m_hostname'] = $sr['hostname'] = PMA_Util::sqlAddSlashes($_REQUEST['hostname']); $_SESSION['replication']['m_port'] = $sr['port'] - = PMA_Util::sqlAddSlashes($_REQUEST['port']); + = PMA_Util::sqlAddSlashes($_REQUEST['text_port']); $_SESSION['replication']['m_correct'] = ''; $_SESSION['replication']['sr_action_status'] = 'error'; $_SESSION['replication']['sr_action_info'] = __('Unknown error');