Skip to content

Commit

Permalink
Rename PMA_replication_connect_to_master -> PMA_Replication_connectTo…
Browse files Browse the repository at this point in the history
…Master
  • Loading branch information
madhuracj committed May 23, 2013
1 parent 93deda5 commit 63f6ef3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libraries/replication.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ function PMA_Replication_Slave_changeMaster($user, $password, $host, $port,
*
* @return mixed $link mysql link on success
*/
function PMA_replication_connect_to_master($user, $password, $host = null, $port = null, $socket = null)
function PMA_Replication_connectToMaster($user, $password, $host = null, $port = null, $socket = null)
{
$server = array();
$server["host"] = $host;
Expand Down
2 changes: 1 addition & 1 deletion server_replication.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
$_SESSION['replication']['sr_action_info'] = __('Unknown error');

// Attempt to connect to the new master server
$link_to_master = PMA_replication_connect_to_master(
$link_to_master = PMA_Replication_connectToMaster(
$sr['username'], $sr['pma_pw'], $sr['hostname'], $sr['port']
);

Expand Down

0 comments on commit 63f6ef3

Please sign in to comment.