Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Przybylski <piotrprz@gmail.com>2011-08-05 20:14:05 +0400
committerPiotr Przybylski <piotrprz@gmail.com>2011-08-05 20:14:05 +0400
commitca9c30f1d60ad88ed1a0320dd231c54e866ab439 (patch)
tree22e90cc13cad379b4ddd3a03dbe5f99be1b4af80 /server_synchronize.php
parentefa788d00d4ab546f7ec1b24522087c9cbc13743 (diff)
Synchronize: allow to connect to local server through socket
Diffstat (limited to 'server_synchronize.php')
-rw-r--r--server_synchronize.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/server_synchronize.php b/server_synchronize.php
index 3e57f441a0..faffd658cc 100644
--- a/server_synchronize.php
+++ b/server_synchronize.php
@@ -1083,7 +1083,7 @@ if (isset($_REQUEST['synchronize_db'])) {
echo '>' . __('Current connection') . '</option>';
foreach ($GLOBALS['cfg']['Servers'] as $key => $tmp_server) {
- if (empty($tmp_server['host'])) {
+ if (empty($tmp_server['host']) && empty($tmp_server['socket'])) {
continue;
}