Completed
Push — master ( d9d770...cd354f )
by cam
07:26 queued 02:40
created
ecrire/inc/distant.php 1 patch
Spacing   +64 added lines, -64 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 	define('_INC_DISTANT_CONTENT_ENCODING', 'gzip');
27 27
 }
28 28
 if (!defined('_INC_DISTANT_USER_AGENT')) {
29
-	define('_INC_DISTANT_USER_AGENT', 'SPIP-' . $GLOBALS['spip_version_affichee'] . ' (' . $GLOBALS['home_server'] . ')');
29
+	define('_INC_DISTANT_USER_AGENT', 'SPIP-'.$GLOBALS['spip_version_affichee'].' ('.$GLOBALS['home_server'].')');
30 30
 }
31 31
 if (!defined('_INC_DISTANT_MAX_SIZE')) {
32 32
 	define('_INC_DISTANT_MAX_SIZE', 2097152);
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 	define('_INC_DISTANT_CONNECT_TIMEOUT', 10);
36 36
 }
37 37
 
38
-define('_REGEXP_COPIE_LOCALE', ',' 	.
38
+define('_REGEXP_COPIE_LOCALE', ','.
39 39
 	preg_replace(
40 40
 		'@^https?:@',
41 41
 		'https?:',
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 
71 71
 	// si c'est la protection de soi-meme, retourner le path
72 72
 	if ($mode !== 'force' and preg_match(_REGEXP_COPIE_LOCALE, $source, $match)) {
73
-		$source = substr(_DIR_IMG, strlen(_DIR_RACINE)) . urldecode($match[1]);
73
+		$source = substr(_DIR_IMG, strlen(_DIR_RACINE)).urldecode($match[1]);
74 74
 
75 75
 		return @file_exists($source) ? $source : false;
76 76
 	}
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 		return false;
91 91
 	}
92 92
 
93
-	$localrac = _DIR_RACINE . $local;
93
+	$localrac = _DIR_RACINE.$local;
94 94
 	$t = ($mode == 'force') ? false : @file_exists($localrac);
95 95
 
96 96
 	// test d'existence du fichier
@@ -115,13 +115,13 @@  discard block
 block discarded – undo
115 115
 			array('file' => $localrac, 'taille_max' => $taille_max, 'if_modified_since' => $t ? filemtime($localrac) : '')
116 116
 		);
117 117
 		if (!$res or (!$res['length'] and $res['status'] != 304)) {
118
-			spip_log("copie_locale : Echec recuperation $source sur $localrac status : " . $res['status'], 'distant' . _LOG_INFO_IMPORTANTE);
118
+			spip_log("copie_locale : Echec recuperation $source sur $localrac status : ".$res['status'], 'distant'._LOG_INFO_IMPORTANTE);
119 119
 		}
120 120
 		if (!$res['length']) {
121 121
 			// si $t c'est sans doute juste un not-modified-since
122 122
 			return $t ? $local : false;
123 123
 		}
124
-		spip_log("copie_locale : recuperation $source sur $localrac taille " . $res['length'] . ' OK', 'distant');
124
+		spip_log("copie_locale : recuperation $source sur $localrac taille ".$res['length'].' OK', 'distant');
125 125
 
126 126
 		// pour une eventuelle indexation
127 127
 		pipeline(
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
  *   url ou false en cas d'echec
154 154
  */
155 155
 function valider_url_distante($url, $known_hosts = array()) {
156
-	if (!function_exists('protocole_verifier')){
156
+	if (!function_exists('protocole_verifier')) {
157 157
 		include_spip('inc/filtres_mini');
158 158
 	}
159 159
 
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
 	}
163 163
 	
164 164
 	$parsed_url = parse_url($url);
165
-	if (!$parsed_url or empty($parsed_url['host']) ) {
165
+	if (!$parsed_url or empty($parsed_url['host'])) {
166 166
 		return false;
167 167
 	}
168 168
 
@@ -203,10 +203,10 @@  discard block
 block discarded – undo
203 203
 			}
204 204
 		}
205 205
 		if ($ip) {
206
-			$parts = array_map('intval', explode( '.', $ip ));
206
+			$parts = array_map('intval', explode('.', $ip));
207 207
 			if (127 === $parts[0] or 10 === $parts[0] or 0 === $parts[0]
208
-			  or ( 172 === $parts[0] and 16 <= $parts[1] and 31 >= $parts[1] )
209
-			  or ( 192 === $parts[0] && 168 === $parts[1] )
208
+			  or (172 === $parts[0] and 16 <= $parts[1] and 31 >= $parts[1])
209
+			  or (192 === $parts[0] && 168 === $parts[1])
210 210
 			) {
211 211
 				return false;
212 212
 			}
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
 	}
219 219
 
220 220
 	$port = $parsed_url['port'];
221
-	if ($port === 80  or $port === 443  or $port === 8080) {
221
+	if ($port === 80 or $port === 443 or $port === 8080) {
222 222
 		return $url;
223 223
 	}
224 224
 
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
 				}
287 287
 			}
288 288
 			if ($taille > 500) {
289
-				$boundary = substr(md5(rand() . 'spip'), 0, 8);
289
+				$boundary = substr(md5(rand().'spip'), 0, 8);
290 290
 			}
291 291
 		}
292 292
 
@@ -314,16 +314,16 @@  discard block
 block discarded – undo
314 314
 			}
315 315
 		} else {
316 316
 			// fabrique une chaine HTTP simple pour un POST
317
-			$entete = 'Content-Type: application/x-www-form-urlencoded' . "\r\n";
317
+			$entete = 'Content-Type: application/x-www-form-urlencoded'."\r\n";
318 318
 			$chaine = array();
319 319
 			if (is_array($donnees)) {
320 320
 				foreach ($donnees as $cle => $valeur) {
321 321
 					if (is_array($valeur)) {
322 322
 						foreach ($valeur as $val2) {
323
-							$chaine[] = rawurlencode($cle) . '[]=' . rawurlencode($val2);
323
+							$chaine[] = rawurlencode($cle).'[]='.rawurlencode($val2);
324 324
 						}
325 325
 					} else {
326
-						$chaine[] = rawurlencode($cle) . '=' . rawurlencode($valeur);
326
+						$chaine[] = rawurlencode($cle).'='.rawurlencode($valeur);
327 327
 					}
328 328
 				}
329 329
 				$chaine = implode('&', $chaine);
@@ -433,7 +433,7 @@  discard block
 block discarded – undo
433 433
 	$head_add = '';
434 434
 	if (!empty($options['headers'])) {
435 435
 		foreach ($options['headers'] as $champ => $valeur) {
436
-			$head_add .= $champ . ': ' . $valeur . "\r\n";
436
+			$head_add .= $champ.': '.$valeur."\r\n";
437 437
 		}
438 438
 		// ne pas le repasser a recuperer_url si on follow un location, car ils seront dans datas
439 439
 		unset($options['entetes']);
@@ -443,9 +443,9 @@  discard block
 block discarded – undo
443 443
 		list($head, $postdata) = prepare_donnees_post($options['datas'], $options['boundary']);
444 444
 		$head .= $head_add;
445 445
 		if (stripos($head, 'Content-Length:') === false) {
446
-			$head .= 'Content-Length: ' . strlen($postdata) . "\r\n";
446
+			$head .= 'Content-Length: '.strlen($postdata)."\r\n";
447 447
 		}
448
-		$options['datas'] = $head . "\r\n" . $postdata;
448
+		$options['datas'] = $head."\r\n".$postdata;
449 449
 		if (
450 450
 			strlen($postdata)
451 451
 			and !$methode_demandee
@@ -453,15 +453,15 @@  discard block
 block discarded – undo
453 453
 			$options['methode'] = 'POST';
454 454
 		}
455 455
 	} elseif ($head_add) {
456
-		$options['datas'] = $head_add . "\r\n";
456
+		$options['datas'] = $head_add."\r\n";
457 457
 	}
458 458
 
459 459
 	// Accepter les URLs au format feed:// ou qui ont oublie le http:// ou les urls relatives au protocole
460 460
 	$url = preg_replace(',^feed://,i', 'http://', $url);
461 461
 	if (!tester_url_absolue($url)) {
462
-		$url = 'http://' . $url;
462
+		$url = 'http://'.$url;
463 463
 	} elseif (strncmp($url, '//', 2) == 0) {
464
-		$url = 'http:' . $url;
464
+		$url = 'http:'.$url;
465 465
 	}
466 466
 
467 467
 	$url = url_to_ascii($url);
@@ -490,7 +490,7 @@  discard block
 block discarded – undo
490 490
 		$options['if_modified_since']
491 491
 	);
492 492
 	if (!$handle) {
493
-		spip_log("ECHEC init_http $url", 'distant' . _LOG_ERREUR);
493
+		spip_log("ECHEC init_http $url", 'distant'._LOG_ERREUR);
494 494
 
495 495
 		return false;
496 496
 	}
@@ -519,7 +519,7 @@  discard block
 block discarded – undo
519 519
 					'status' => 200,
520 520
 				);
521 521
 			} else {
522
-				spip_log("ECHEC chinoiserie $url", 'distant' . _LOG_ERREUR);
522
+				spip_log("ECHEC chinoiserie $url", 'distant'._LOG_ERREUR);
523 523
 				return false;
524 524
 			}
525 525
 		} elseif ($res['location'] and $options['follow_location']) {
@@ -531,7 +531,7 @@  discard block
 block discarded – undo
531 531
 
532 532
 			return recuperer_url($url, $options);
533 533
 		} elseif ($res['status'] !== 200) {
534
-			spip_log('HTTP status ' . $res['status'] . " pour $url", 'distant');
534
+			spip_log('HTTP status '.$res['status']." pour $url", 'distant');
535 535
 		}
536 536
 		$result['status'] = $res['status'];
537 537
 		if (isset($res['headers'])) {
@@ -556,7 +556,7 @@  discard block
 block discarded – undo
556 556
 
557 557
 	$gz = false;
558 558
 	if (preg_match(",\bContent-Encoding: .*gzip,is", $result['headers'])) {
559
-		$gz = (_DIR_TMP . md5(uniqid(mt_rand())) . '.tmp.gz');
559
+		$gz = (_DIR_TMP.md5(uniqid(mt_rand())).'.tmp.gz');
560 560
 	}
561 561
 
562 562
 	// si on a pas deja recuperer le contenu par une methode detournee
@@ -642,7 +642,7 @@  discard block
 block discarded – undo
642 642
 	$sig['url'] = $url;
643 643
 
644 644
 	$dir = sous_repertoire(_DIR_CACHE, 'curl');
645
-	$cache = md5(serialize($sig)) . '-' . substr(preg_replace(',\W+,', '_', $url), 0, 80);
645
+	$cache = md5(serialize($sig)).'-'.substr(preg_replace(',\W+,', '_', $url), 0, 80);
646 646
 	$sub = sous_repertoire($dir, substr($cache, 0, 2));
647 647
 	$cache = "$sub$cache";
648 648
 
@@ -752,7 +752,7 @@  discard block
 block discarded – undo
752 752
 		return false;
753 753
 	}
754 754
 	if ($get_headers) {
755
-		return $res['headers'] . "\n" . $res['page'];
755
+		return $res['headers']."\n".$res['page'];
756 756
 	}
757 757
 
758 758
 	return $res['page'];
@@ -856,7 +856,7 @@  discard block
 block discarded – undo
856 856
 	$fp = false;
857 857
 	if ($fichier) {
858 858
 		include_spip('inc/acces');
859
-		$tmpfile = "$fichier." . creer_uniqid() . '.tmp';
859
+		$tmpfile = "$fichier.".creer_uniqid().'.tmp';
860 860
 		$fp = spip_fopen_lock($tmpfile, 'w', LOCK_EX);
861 861
 		if (!$fp and file_exists($fichier)) {
862 862
 			return filesize($fichier);
@@ -915,7 +915,7 @@  discard block
 block discarded – undo
915 915
 	}
916 916
 	$result['status'] = intval($r[1]);
917 917
 	while ($s = trim(fgets($handle, 16384))) {
918
-		$result['headers'][] = $s . "\n";
918
+		$result['headers'][] = $s."\n";
919 919
 		preg_match(',^([^:]*): *(.*)$,i', $s, $r);
920 920
 		list(, $d, $v) = $r;
921 921
 		if (strtolower(trim($d)) == 'location' and $result['status'] >= 300 and $result['status'] < 400) {
@@ -963,13 +963,13 @@  discard block
 block discarded – undo
963 963
 
964 964
 	// on se place tout le temps comme si on etait a la racine
965 965
 	if (_DIR_RACINE) {
966
-		$d = preg_replace(',^' . preg_quote(_DIR_RACINE) . ',', '', $d);
966
+		$d = preg_replace(',^'.preg_quote(_DIR_RACINE).',', '', $d);
967 967
 	}
968 968
 
969 969
 	$m = md5($source);
970 970
 
971 971
 	return $d
972
-	. substr(preg_replace(',[^\w-],', '', basename($source)) . '-' . $m, 0, 12)
972
+	. substr(preg_replace(',[^\w-],', '', basename($source)).'-'.$m, 0, 12)
973 973
 	. substr($m, 0, 4)
974 974
 	. ".$extension";
975 975
 }
@@ -992,7 +992,7 @@  discard block
 block discarded – undo
992 992
 	// Si c'est deja local pas de souci
993 993
 	if (!tester_url_absolue($source)) {
994 994
 		if (_DIR_RACINE) {
995
-			$source = preg_replace(',^' . preg_quote(_DIR_RACINE) . ',', '', $source);
995
+			$source = preg_replace(',^'.preg_quote(_DIR_RACINE).',', '', $source);
996 996
 		}
997 997
 
998 998
 		return $source;
@@ -1009,7 +1009,7 @@  discard block
 block discarded – undo
1009 1009
 	if ($ext
1010 1010
 		and preg_match(',^\w+$,', $ext) // pas de php?truc=1&...
1011 1011
 		and $f = nom_fichier_copie_locale($source, $ext)
1012
-		and file_exists(_DIR_RACINE . $f)
1012
+		and file_exists(_DIR_RACINE.$f)
1013 1013
 	) {
1014 1014
 		return $f;
1015 1015
 	}
@@ -1017,7 +1017,7 @@  discard block
 block discarded – undo
1017 1017
 
1018 1018
 	// Si c'est deja dans la table des documents,
1019 1019
 	// ramener le nom de sa copie potentielle
1020
-	$ext = sql_getfetsel('extension', 'spip_documents', 'fichier=' . sql_quote($source) . " AND distant='oui' AND extension <> ''");
1020
+	$ext = sql_getfetsel('extension', 'spip_documents', 'fichier='.sql_quote($source)." AND distant='oui' AND extension <> ''");
1021 1021
 
1022 1022
 	if ($ext) {
1023 1023
 		return nom_fichier_copie_locale($source, $ext);
@@ -1028,9 +1028,9 @@  discard block
 block discarded – undo
1028 1028
 
1029 1029
 	$ext = $path_parts ? $path_parts['extension'] : '';
1030 1030
 
1031
-	if ($ext and sql_getfetsel('extension', 'spip_types_documents', 'extension=' . sql_quote($ext))) {
1031
+	if ($ext and sql_getfetsel('extension', 'spip_types_documents', 'extension='.sql_quote($ext))) {
1032 1032
 		$f = nom_fichier_copie_locale($source, $ext);
1033
-		if (file_exists(_DIR_RACINE . $f)) {
1033
+		if (file_exists(_DIR_RACINE.$f)) {
1034 1034
 			return $f;
1035 1035
 		}
1036 1036
 	}
@@ -1038,7 +1038,7 @@  discard block
 block discarded – undo
1038 1038
 	// Ping  pour voir si son extension est connue et autorisee
1039 1039
 	// avec mise en cache du resultat du ping
1040 1040
 
1041
-	$cache = sous_repertoire(_DIR_CACHE, 'rid') . md5($source);
1041
+	$cache = sous_repertoire(_DIR_CACHE, 'rid').md5($source);
1042 1042
 	if (!@file_exists($cache)
1043 1043
 		or !$path_parts = @unserialize(spip_file_get_contents($cache))
1044 1044
 		or _request('var_mode') == 'recalcul'
@@ -1047,10 +1047,10 @@  discard block
 block discarded – undo
1047 1047
 		ecrire_fichier($cache, serialize($path_parts));
1048 1048
 	}
1049 1049
 	$ext = !empty($path_parts['extension']) ? $path_parts['extension'] : '';
1050
-	if ($ext and sql_getfetsel('extension', 'spip_types_documents', 'extension=' . sql_quote($ext))) {
1050
+	if ($ext and sql_getfetsel('extension', 'spip_types_documents', 'extension='.sql_quote($ext))) {
1051 1051
 		return nom_fichier_copie_locale($source, $ext);
1052 1052
 	}
1053
-	spip_log("pas de copie locale pour $source", 'distant' . _LOG_ERREUR);
1053
+	spip_log("pas de copie locale pour $source", 'distant'._LOG_ERREUR);
1054 1054
 }
1055 1055
 
1056 1056
 
@@ -1116,19 +1116,19 @@  discard block
 block discarded – undo
1116 1116
 			if (!$t
1117 1117
 				and preg_match(',\.([a-z0-9]+)(\?.*)?$,i', $source, $rext)
1118 1118
 			) {
1119
-				$t = sql_fetsel('extension', 'spip_types_documents', 'extension=' . sql_quote($rext[1], '', 'text'));
1119
+				$t = sql_fetsel('extension', 'spip_types_documents', 'extension='.sql_quote($rext[1], '', 'text'));
1120 1120
 			}
1121 1121
 			if (!$t
1122 1122
 				and preg_match(',^Content-Disposition:\s*attachment;\s*filename=(.*)$,Uims', $headers, $m)
1123 1123
 				and preg_match(',\.([a-z0-9]+)(\?.*)?$,i', $m[1], $rext)
1124 1124
 			) {
1125
-				$t = sql_fetsel('extension', 'spip_types_documents', 'extension=' . sql_quote($rext[1], '', 'text'));
1125
+				$t = sql_fetsel('extension', 'spip_types_documents', 'extension='.sql_quote($rext[1], '', 'text'));
1126 1126
 			}
1127 1127
 		}
1128 1128
 
1129 1129
 		// Autre mime/type (ou text/plain avec fichier d'extension inconnue)
1130 1130
 		if (!$t) {
1131
-			$t = sql_fetsel('extension', 'spip_types_documents', 'mime_type=' . sql_quote($mime_type));
1131
+			$t = sql_fetsel('extension', 'spip_types_documents', 'mime_type='.sql_quote($mime_type));
1132 1132
 		}
1133 1133
 
1134 1134
 		// Toujours rien ? (ex: audio/x-ogg au lieu de application/ogg)
@@ -1138,11 +1138,11 @@  discard block
 block discarded – undo
1138 1138
 			and preg_match(',\.([a-z0-9]+)(\?.*)?$,i', $source, $rext)
1139 1139
 		) {
1140 1140
 			# eviter xxx.3 => 3gp (> SPIP 3)
1141
-			$t = sql_fetsel('extension', 'spip_types_documents', 'extension=' . sql_quote($rext[1], '', 'text'));
1141
+			$t = sql_fetsel('extension', 'spip_types_documents', 'extension='.sql_quote($rext[1], '', 'text'));
1142 1142
 		}
1143 1143
 
1144 1144
 		if ($t) {
1145
-			spip_log("mime-type $mime_type ok, extension " . $t['extension'], 'distant');
1145
+			spip_log("mime-type $mime_type ok, extension ".$t['extension'], 'distant');
1146 1146
 			$a['extension'] = $t['extension'];
1147 1147
 		} else {
1148 1148
 			# par defaut on retombe sur '.bin' si c'est autorise
@@ -1184,7 +1184,7 @@  discard block
 block discarded – undo
1184 1184
 		} else {
1185 1185
 			if ($a['body']) {
1186 1186
 				$a['extension'] = $extension;
1187
-				$a['fichier'] = _DIR_RACINE . nom_fichier_copie_locale($source, $extension);
1187
+				$a['fichier'] = _DIR_RACINE.nom_fichier_copie_locale($source, $extension);
1188 1188
 				ecrire_fichier($a['fichier'], $a['body']);
1189 1189
 				$size_image = @spip_getimagesize($a['fichier']);
1190 1190
 				$a['largeur'] = intval($size_image[0]);
@@ -1310,7 +1310,7 @@  discard block
 block discarded – undo
1310 1310
 		}
1311 1311
 	} else {
1312 1312
 		$scheme = $t['scheme'];
1313
-		$noproxy = $scheme . '://';
1313
+		$noproxy = $scheme.'://';
1314 1314
 	}
1315 1315
 	if (isset($t['user'])) {
1316 1316
 		$user = array($t['user'], $t['pass']);
@@ -1324,7 +1324,7 @@  discard block
 block discarded – undo
1324 1324
 	}
1325 1325
 
1326 1326
 	if (!empty($t['query'])) {
1327
-		$path .= '?' . $t['query'];
1327
+		$path .= '?'.$t['query'];
1328 1328
 	}
1329 1329
 
1330 1330
 	$f = lance_requete($method, $scheme, $user, $host, $path, $port, $noproxy, $refuse_gz, $referer, $datas, $vers, $date);
@@ -1397,20 +1397,20 @@  discard block
 block discarded – undo
1397 1397
 	$proxy_user = '';
1398 1398
 	$http_proxy = need_proxy($host);
1399 1399
 	if ($user) {
1400
-		$user = urlencode($user[0]) . ':' . urlencode($user[1]);
1400
+		$user = urlencode($user[0]).':'.urlencode($user[1]);
1401 1401
 	}
1402 1402
 
1403 1403
 	$connect = '';
1404 1404
 	if ($http_proxy) {
1405
-		if (!defined('_PROXY_HTTPS_NOT_VIA_CONNECT') and in_array($scheme , array('tls','ssl'))) {
1406
-			$path_host = (!$user ? '' : "$user@") . $host . (($port != 80) ? ":$port" : '');
1407
-			$connect = 'CONNECT ' . $path_host . " $vers\r\n"
1405
+		if (!defined('_PROXY_HTTPS_NOT_VIA_CONNECT') and in_array($scheme, array('tls', 'ssl'))) {
1406
+			$path_host = (!$user ? '' : "$user@").$host.(($port != 80) ? ":$port" : '');
1407
+			$connect = 'CONNECT '.$path_host." $vers\r\n"
1408 1408
 				. "Host: $path_host\r\n"
1409 1409
 				. "Proxy-Connection: Keep-Alive\r\n";
1410 1410
 		} else {
1411
-			$path = (in_array($scheme , array('tls','ssl')) ? 'https://' : "$scheme://")
1411
+			$path = (in_array($scheme, array('tls', 'ssl')) ? 'https://' : "$scheme://")
1412 1412
 				. (!$user ? '' : "$user@")
1413
-				. "$host" . (($port != 80) ? ":$port" : '') . $path;
1413
+				. "$host".(($port != 80) ? ":$port" : '').$path;
1414 1414
 		}
1415 1415
 		$t2 = @parse_url($http_proxy);
1416 1416
 		$first_host = $t2['host'];
@@ -1418,10 +1418,10 @@  discard block
 block discarded – undo
1418 1418
 			$port = 80;
1419 1419
 		}
1420 1420
 		if ($t2['user']) {
1421
-			$proxy_user = base64_encode($t2['user'] . ':' . $t2['pass']);
1421
+			$proxy_user = base64_encode($t2['user'].':'.$t2['pass']);
1422 1422
 		}
1423 1423
 	} else {
1424
-		$first_host = $noproxy . $host;
1424
+		$first_host = $noproxy.$host;
1425 1425
 	}
1426 1426
 
1427 1427
 	if ($connect) {
@@ -1443,7 +1443,7 @@  discard block
 block discarded – undo
1443 1443
 		);
1444 1444
 		spip_log("Recuperer $path sur $first_host:$port par $f (via CONNECT)", 'connect');
1445 1445
 		if (!$f) {
1446
-			spip_log("Erreur connexion $errno $errstr", 'distant' . _LOG_ERREUR);
1446
+			spip_log("Erreur connexion $errno $errstr", 'distant'._LOG_ERREUR);
1447 1447
 			return $errno;
1448 1448
 		}
1449 1449
 		stream_set_timeout($f, _INC_DISTANT_CONNECT_TIMEOUT);
@@ -1455,7 +1455,7 @@  discard block
 block discarded – undo
1455 1455
 			or !count($res = explode(' ', $res))
1456 1456
 			or $res[1] !== '200'
1457 1457
 		) {
1458
-			spip_log("Echec CONNECT sur $first_host:$port", 'connect' . _LOG_INFO_IMPORTANTE);
1458
+			spip_log("Echec CONNECT sur $first_host:$port", 'connect'._LOG_INFO_IMPORTANTE);
1459 1459
 			fclose($f);
1460 1460
 
1461 1461
 			return false;
@@ -1472,7 +1472,7 @@  discard block
 block discarded – undo
1472 1472
 		} while (!$f and $ntry-- and $errno !== 110 and sleep(1));
1473 1473
 		spip_log("Recuperer $path sur $first_host:$port par $f");
1474 1474
 		if (!$f) {
1475
-			spip_log("Erreur connexion $errno $errstr", 'distant' . _LOG_ERREUR);
1475
+			spip_log("Erreur connexion $errno $errstr", 'distant'._LOG_ERREUR);
1476 1476
 
1477 1477
 			return $errno;
1478 1478
 		}
@@ -1482,16 +1482,16 @@  discard block
 block discarded – undo
1482 1482
 	$site = isset($GLOBALS['meta']['adresse_site']) ? $GLOBALS['meta']['adresse_site'] : '';
1483 1483
 
1484 1484
 	$host_port = $host;
1485
-	if ($port != (in_array($scheme , array('tls','ssl')) ? 443 : 80)) {
1485
+	if ($port != (in_array($scheme, array('tls', 'ssl')) ? 443 : 80)) {
1486 1486
 		$host_port .= ":$port";
1487 1487
 	}
1488 1488
 	$req = "$method $path $vers\r\n"
1489 1489
 		. "Host: $host_port\r\n"
1490
-		. 'User-Agent: ' . _INC_DISTANT_USER_AGENT . "\r\n"
1491
-		. ($refuse_gz ? '' : ('Accept-Encoding: ' . _INC_DISTANT_CONTENT_ENCODING . "\r\n"))
1490
+		. 'User-Agent: '._INC_DISTANT_USER_AGENT."\r\n"
1491
+		. ($refuse_gz ? '' : ('Accept-Encoding: '._INC_DISTANT_CONTENT_ENCODING."\r\n"))
1492 1492
 		. (!$site ? '' : "Referer: $site/$referer\r\n")
1493
-		. (!$date ? '' : 'If-Modified-Since: ' . (gmdate('D, d M Y H:i:s', $date) . " GMT\r\n"))
1494
-		. (!$user ? '' : ('Authorization: Basic ' . base64_encode($user) . "\r\n"))
1493
+		. (!$date ? '' : 'If-Modified-Since: '.(gmdate('D, d M Y H:i:s', $date)." GMT\r\n"))
1494
+		. (!$user ? '' : ('Authorization: Basic '.base64_encode($user)."\r\n"))
1495 1495
 		. (!$proxy_user ? '' : "Proxy-Authorization: Basic $proxy_user\r\n")
1496 1496
 		. (!strpos($vers, '1.1') ? '' : "Keep-Alive: 300\r\nConnection: keep-alive\r\n");
1497 1497
 
Please login to merge, or discard this patch.