Skip to content

Commit

Permalink
Fix undefined index warning with some SSL connections and ssl_ca_paths.
Browse files Browse the repository at this point in the history
Fixes #12929

Signed-off-by: Isaac Bennetch <bennetch@gmail.com>
  • Loading branch information
ibennetch committed Jan 29, 2017
1 parent d3af64d commit 7b4068d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -49,6 +49,7 @@ phpMyAdmin - ChangeLog
- issue #12901 Use server returned table name on renaming table
- issue #12918 Always use \r\n as newline when editing fields
- issue #12923 Fixed server side search in navigation panel
- issue #12929 Undefined index warning with ssl_ca_paths

4.6.6 (2017-01-23)
- issue #12759 Fix Notice regarding 'Undefined index: old_usergroup'
Expand Down
2 changes: 1 addition & 1 deletion libraries/dbi/DBIMysqli.php
Expand Up @@ -98,7 +98,7 @@ public function connect(
if (! is_null($server['ssl_key']) ||
! is_null($server['ssl_cert']) ||
! is_null($server['ssl_ca']) ||
! is_null($server['ssl_ca_paths']) ||
! is_null($server['ssl_ca_path']) ||
! is_null($server['ssl_ciphers'])
) {
mysqli_ssl_set(
Expand Down

0 comments on commit 7b4068d

Please sign in to comment.