From fa4421ed385f0b8e6eb972f190d743a872fd7a7a Mon Sep 17 00:00:00 2001 From: Martin Riedl Date: Tue, 16 Dec 2014 09:54:46 -0500 Subject: [PATCH 1/2] Fix initial replication configuration Signed-off-by: Marc Delisle --- libraries/replication_gui.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'); From fb7e54f25b4c9357ff3a341749c6f0ef07c8183a Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 16 Dec 2014 09:55:13 -0500 Subject: [PATCH 2/2] ChangeLog entry Signed-off-by: Marc Delisle --- ChangeLog | 1 + 1 file changed, 1 insertion(+) diff --git a/ChangeLog b/ChangeLog index c69d87ea18..ddaa272705 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,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