X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=www%2Fecrire%2Freq%2Fmysql.php;h=490dcf734a3f5e7aff15bacee8c456d098e09309;hb=d558cda864e3f858792fd87c23580e9c82df9711;hp=593b9e78484db57da2d011f77d4fc6cb8ebd8011;hpb=0f3ef482e6020c572ea3221db6ab5165772c22e9;p=lhc%2Fweb%2Fwww.git diff --git a/www/ecrire/req/mysql.php b/www/ecrire/req/mysql.php index 593b9e78..490dcf73 100644 --- a/www/ecrire/req/mysql.php +++ b/www/ecrire/req/mysql.php @@ -3,7 +3,7 @@ /* *************************************************************************\ * SPIP, Systeme de publication pour l'internet * * * - * Copyright (c) 2001-2017 * + * Copyright (c) 2001-2018 * * Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James * * * * Ce programme est un logiciel libre distribue sous licence GNU/GPL. * @@ -44,9 +44,17 @@ function req_mysql_dist($host, $port, $login, $pass, $db = '', $prefixe = '') { if (!charger_php_extension('mysqli')) { return false; } - if ($port) { + + // si port est fourni mais pas host, c'est un socket -> compat avec vieille syntaxe de mysql_connect() et anciens fichiers connect.php + if ( + $port and !is_numeric($socket = $port) + and (!$host or $host=='localhost')) { + $link = @mysqli_connect($host, $login, $pass, '', null, $socket); + } + elseif ($port) { $link = @mysqli_connect($host, $login, $pass, '', $port); - } else { + } + else { $link = @mysqli_connect($host, $login, $pass); }