Skip to content

Commit

Permalink
set default value for ssl connection to MySQL to FALSE
Browse files Browse the repository at this point in the history
  • Loading branch information
lem9 committed Feb 28, 2007
1 parent faf2b09 commit 3ac2541
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ phpMyAdmin - ChangeLog
$Id$
$HeadURL$

2007-02-28 Marc Delisle <lem9@users.sourceforge.net>
* 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
### 2.10.0.1 released

2007-02-27 Marc Delisle <lem9@users.sourceforge.net>
* libraries/common.lib.php: bug #1659176, memory error displaying
a table with large BLOBs
Expand Down
4 changes: 2 additions & 2 deletions Documentation.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>phpMyAdmin 2.10.0 - Documentation</title>
<title>phpMyAdmin 2.10.0.1 - Documentation</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>

Expand All @@ -33,7 +33,7 @@
<li><a href="#glossary">Glossary</a></li>
</ul>

<h1>phpMyAdmin 2.10.0 Documentation</h1>
<h1>phpMyAdmin 2.10.0.1 Documentation</h1>

<ul><li><a href="http://www.phpmyadmin.net/">
phpMyAdmin homepage</a></li>
Expand Down
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ phpMyAdmin - Readme

A set of PHP-scripts to manage MySQL over the web.

Version 2.10.0
--------------
Version 2.10.0.1
----------------
http://www.phpmyadmin.net/

Copyright (C) 1998-2000 Tobias Ratschiller <tobias_at_ratschiller.com>
Expand Down
2 changes: 1 addition & 1 deletion libraries/Config.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function __construct($source = null)
*/
function checkSystem()
{
$this->set('PMA_VERSION', '2.10.0');
$this->set('PMA_VERSION', '2.10.0.1');
/**
* @deprecated
*/
Expand Down
2 changes: 1 addition & 1 deletion libraries/config.default.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
$cfg['Servers'][$i]['host'] = 'localhost'; // MySQL hostname or IP address
$cfg['Servers'][$i]['port'] = ''; // MySQL port - leave blank for default port
$cfg['Servers'][$i]['socket'] = ''; // Path to the socket - leave blank for default socket
$cfg['Servers'][$i]['ssl'] = true; // Use SSL for connecting to MySQL server?
$cfg['Servers'][$i]['ssl'] = false; // Use SSL for connecting to MySQL server?
$cfg['Servers'][$i]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket')
$cfg['Servers'][$i]['extension'] = 'mysql'; // The php MySQL extension to use ('mysql' or 'mysqli')
$cfg['Servers'][$i]['compress'] = FALSE; // Use compressed protocol for the MySQL connection
Expand Down
4 changes: 2 additions & 2 deletions translators.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>phpMyAdmin 2.10.0 - Official translators</title>
<title>phpMyAdmin 2.10.0.1 - Official translators</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>

Expand All @@ -31,7 +31,7 @@
<li><a href="Documentation.html#glossary">Glossary</a></li>
</ul>

<h1>phpMyAdmin 2.10.0 official translators list</h1>
<h1>phpMyAdmin 2.10.0.1 official translators list</h1>

<p> Here is the list of the &quot;official translators&quot; of
phpMyAdmin.</p>
Expand Down

0 comments on commit 3ac2541

Please sign in to comment.