From a2f7bc01de35c1083c1ae01432ee3b67040b6c56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 Mar 2006 10:17:58 +0000 Subject: [PATCH] Allow empty socket (bug #1452142). --- ChangeLog | 3 +++ scripts/setup.php | 4 ---- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6f1473a92..b440343d9 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2006-03-17 Michal Čihař + * scripts/setup.php: Allow empty socket (bug #1452142). + 2006-03-16 Marc Delisle * libraries/display_tbl.lib.php: undefined variable when a BLOB is NULL * libraries/Theme_Manager.class.php: XSS vulnerability diff --git a/scripts/setup.php b/scripts/setup.php index e57947ec8..059a87c95 100644 --- a/scripts/setup.php +++ b/scripts/setup.php @@ -1224,10 +1224,6 @@ switch ($action) { message('error', 'Empty hostname!'); $err = TRUE; } - if ($new_server['connect_type'] == 'socket' && empty($new_server['socket'])) { - message('error', 'Empty socket with socket connection seleted!'); - $err = TRUE; - } if ($new_server['auth_type'] == 'config' && empty($new_server['user'])) { message('error', 'Empty username while using config authentication method!'); $err = TRUE;