From 4df1b9599660b393554bd7f140d9b39c6ee6951a Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 1 Mar 2007 15:34:58 +0000 Subject: [PATCH] set default value for ssl connection to MYSQL to FALSE --- ChangeLog | 5 +++++ libraries/config.default.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 771c7f632..1238072d2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,11 @@ phpMyAdmin - ChangeLog $Id$ $HeadURL$ +2007-02-28 Marc Delisle + * libraries/config.default.php: set $cfg['Servers'][$i]['ssl'] default + value to false, we got reports from some users having problems with the + default value of true + 2007-02-27 Marc Delisle * libraries/common.lib.php: bug #1659176, memory error displaying a table with large BLOBs diff --git a/libraries/config.default.php b/libraries/config.default.php index ed9875a8f..42477e635 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -96,7 +96,7 @@ $cfg['Servers'][$i]['socket'] = ''; * * @global boolean $cfg['Servers'][$i]['ssl'] */ -$cfg['Servers'][$i]['ssl'] = true; +$cfg['Servers'][$i]['ssl'] = false; /** * How to connect to MySQL server ('tcp' or 'socket')