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:
authorMichal Čihař <michal@cihar.com>2017-02-02 18:08:44 +0300
committerMichal Čihař <michal@cihar.com>2017-02-02 18:08:44 +0300
commit1b7914a4e59e962849092f746b3bbee05c7d8f64 (patch)
treeebbd3c32ead12292d8349c06fea3c6efcfffe8c1 /examples
parent736e2061b8e8b88f332700d3d293cce5f126aa46 (diff)
Remove connect_type setting
It is really not necessary as MySQL decides connection type rather based on hostname than on anything else. Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/config.manyhosts.inc.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/config.manyhosts.inc.php b/examples/config.manyhosts.inc.php
index df14e20e40..b6a6a12761 100644
--- a/examples/config.manyhosts.inc.php
+++ b/examples/config.manyhosts.inc.php
@@ -22,7 +22,6 @@ foreach ($hosts as $host) {
$cfg['Servers'][$i]['host'] = $host;
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
- $cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['controluser'] = 'pma';
$cfg['Servers'][$i]['controlpass'] = 'pmapass';