Completed
Push — master ( 1dde8c...5a052b )
by cam
01:06
created
ecrire/inc/filtres.php 3 patches
Indentation   +2280 added lines, -2280 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
  * @package SPIP\Core\Filtres
17 17
  **/
18 18
 if (!defined('_ECRIRE_INC_VERSION')) {
19
-	return;
19
+    return;
20 20
 }
21 21
 
22 22
 include_spip('inc/charsets');
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
  * @return string Fonction PHP correspondante du filtre
43 43
  */
44 44
 function charger_filtre($fonc, $default = 'filtre_identite_dist') {
45
-	include_fichiers_fonctions(); // inclure les fichiers fonctions
46
-	return chercher_filtre($fonc, $default);
45
+    include_fichiers_fonctions(); // inclure les fichiers fonctions
46
+    return chercher_filtre($fonc, $default);
47 47
 }
48 48
 
49 49
 /**
@@ -75,38 +75,38 @@  discard block
 block discarded – undo
75 75
  *     Fonction PHP correspondante du filtre demandé
76 76
  */
77 77
 function chercher_filtre($fonc, $default = null) {
78
-	if (!$fonc) {
79
-		return $default;
80
-	}
81
-	// Cas des types mime, sans confondre avec les appels de fonction de classe
82
-	// Foo::Bar
83
-	// qui peuvent etre avec un namespace : space\Foo::Bar
84
-	if (preg_match(',^[\w]+/,', $fonc)) {
85
-		$nom = preg_replace(',\W,', '_', $fonc);
86
-		$f = chercher_filtre($nom);
87
-		// cas du sous-type MIME sans filtre associe, passer au type:
88
-		// si filtre_text_plain pas defini, passe a filtre_text
89
-		if (!$f and $nom !== $fonc) {
90
-			$f = chercher_filtre(preg_replace(',\W.*$,', '', $fonc));
91
-		}
92
-
93
-		return $f;
94
-	}
95
-
96
-	include_fichiers_fonctions();
97
-	foreach (array('filtre_' . $fonc, 'filtre_' . $fonc . '_dist', $fonc) as $f) {
98
-		trouver_filtre_matrice($f); // charge des fichiers spécifiques éventuels
99
-		// fonction ou name\space\fonction
100
-		if (is_callable($f)) {
101
-			return $f;
102
-		}
103
-		// méthode statique d'une classe Classe::methode ou name\space\Classe::methode
104
-		elseif (false === strpos($f, '::') and is_callable(array($f))) {
105
-			return $f;
106
-		}
107
-	}
108
-
109
-	return $default;
78
+    if (!$fonc) {
79
+        return $default;
80
+    }
81
+    // Cas des types mime, sans confondre avec les appels de fonction de classe
82
+    // Foo::Bar
83
+    // qui peuvent etre avec un namespace : space\Foo::Bar
84
+    if (preg_match(',^[\w]+/,', $fonc)) {
85
+        $nom = preg_replace(',\W,', '_', $fonc);
86
+        $f = chercher_filtre($nom);
87
+        // cas du sous-type MIME sans filtre associe, passer au type:
88
+        // si filtre_text_plain pas defini, passe a filtre_text
89
+        if (!$f and $nom !== $fonc) {
90
+            $f = chercher_filtre(preg_replace(',\W.*$,', '', $fonc));
91
+        }
92
+
93
+        return $f;
94
+    }
95
+
96
+    include_fichiers_fonctions();
97
+    foreach (array('filtre_' . $fonc, 'filtre_' . $fonc . '_dist', $fonc) as $f) {
98
+        trouver_filtre_matrice($f); // charge des fichiers spécifiques éventuels
99
+        // fonction ou name\space\fonction
100
+        if (is_callable($f)) {
101
+            return $f;
102
+        }
103
+        // méthode statique d'une classe Classe::methode ou name\space\Classe::methode
104
+        elseif (false === strpos($f, '::') and is_callable(array($f))) {
105
+            return $f;
106
+        }
107
+    }
108
+
109
+    return $default;
110 110
 }
111 111
 
112 112
 /**
@@ -150,8 +150,8 @@  discard block
 block discarded – undo
150 150
  *     Chaîne vide sinon.
151 151
  **/
152 152
 function appliquer_filtre($arg, $filtre) {
153
-	$args = func_get_args();
154
-	return appliquer_filtre_sinon($arg, $filtre, $args, '');
153
+    $args = func_get_args();
154
+    return appliquer_filtre_sinon($arg, $filtre, $args, '');
155 155
 }
156 156
 
157 157
 /**
@@ -176,8 +176,8 @@  discard block
 block discarded – undo
176 176
  *     Texte d'origine sinon
177 177
  **/
178 178
 function appliquer_si_filtre($arg, $filtre) {
179
-	$args = func_get_args();
180
-	return appliquer_filtre_sinon($arg, $filtre, $args, $arg);
179
+    $args = func_get_args();
180
+    return appliquer_filtre_sinon($arg, $filtre, $args, $arg);
181 181
 }
182 182
 
183 183
 /**
@@ -193,12 +193,12 @@  discard block
 block discarded – undo
193 193
  *     Version de SPIP
194 194
  **/
195 195
 function spip_version() {
196
-	$version = $GLOBALS['spip_version_affichee'];
197
-	if ($vcs_version = version_vcs_courante(_DIR_RACINE)) {
198
-		$version .= " $vcs_version";
199
-	}
196
+    $version = $GLOBALS['spip_version_affichee'];
197
+    if ($vcs_version = version_vcs_courante(_DIR_RACINE)) {
198
+        $version .= " $vcs_version";
199
+    }
200 200
 
201
-	return $version;
201
+    return $version;
202 202
 }
203 203
 
204 204
 /**
@@ -211,19 +211,19 @@  discard block
 block discarded – undo
211 211
  *    - string|null si $raw = false
212 212
  */
213 213
 function version_vcs_courante($dir, $raw = false) {
214
-	$desc = decrire_version_git($dir);
215
-	if ($desc === null) {
216
-		$desc = decrire_version_svn($dir);
217
-	}
218
-	if ($desc === null or $raw) {
219
-		return $desc;
220
-	}
221
-	// affichage "GIT [master: abcdef]"
222
-	$commit = isset($desc['commit_short']) ? $desc['commit_short'] : $desc['commit'];
223
-	if ($desc['branch']) {
224
-		$commit = $desc['branch'] . ': ' . $commit;
225
-	}
226
-	return "{$desc['vcs']} [$commit]";
214
+    $desc = decrire_version_git($dir);
215
+    if ($desc === null) {
216
+        $desc = decrire_version_svn($dir);
217
+    }
218
+    if ($desc === null or $raw) {
219
+        return $desc;
220
+    }
221
+    // affichage "GIT [master: abcdef]"
222
+    $commit = isset($desc['commit_short']) ? $desc['commit_short'] : $desc['commit'];
223
+    if ($desc['branch']) {
224
+        $commit = $desc['branch'] . ': ' . $commit;
225
+    }
226
+    return "{$desc['vcs']} [$commit]";
227 227
 }
228 228
 
229 229
 /**
@@ -235,24 +235,24 @@  discard block
 block discarded – undo
235 235
  *      array ['branch' => xx, 'commit' => yy] sinon.
236 236
  **/
237 237
 function decrire_version_git($dir) {
238
-	if (!$dir) {
239
-		$dir = '.';
240
-	}
238
+    if (!$dir) {
239
+        $dir = '.';
240
+    }
241 241
 
242
-	// version installee par GIT
243
-	if (lire_fichier($dir . '/.git/HEAD', $c)) {
244
-		$currentHead = trim(substr($c, 4));
245
-		if (lire_fichier($dir . '/.git/' . $currentHead, $hash)) {
246
-			return [
247
-				'vcs' => 'GIT',
248
-				'branch' => basename($currentHead),
249
-				'commit' => trim($hash),
250
-				'commit_short' => substr(trim($hash), 0, 8),
251
-			];
252
-		}
253
-	}
242
+    // version installee par GIT
243
+    if (lire_fichier($dir . '/.git/HEAD', $c)) {
244
+        $currentHead = trim(substr($c, 4));
245
+        if (lire_fichier($dir . '/.git/' . $currentHead, $hash)) {
246
+            return [
247
+                'vcs' => 'GIT',
248
+                'branch' => basename($currentHead),
249
+                'commit' => trim($hash),
250
+                'commit_short' => substr(trim($hash), 0, 8),
251
+            ];
252
+        }
253
+    }
254 254
 
255
-	return null;
255
+    return null;
256 256
 }
257 257
 
258 258
 
@@ -265,25 +265,25 @@  discard block
 block discarded – undo
265 265
  *      array ['commit' => yy, 'date' => xx, 'author' => xx] sinon.
266 266
  **/
267 267
 function decrire_version_svn($dir) {
268
-	if (!$dir) {
269
-		$dir = '.';
270
-	}
271
-	// version installee par SVN
272
-	if (file_exists($dir . '/.svn/wc.db') && class_exists('SQLite3')) {
273
-		$db = new SQLite3($dir . '/.svn/wc.db');
274
-		$result = $db->query('SELECT changed_revision FROM nodes WHERE local_relpath = "" LIMIT 1');
275
-		if ($result) {
276
-			$row = $result->fetchArray();
277
-			if ($row['changed_revision'] != "") {
278
-				return [
279
-					'vcs' => 'SVN',
280
-					'branch' => '',
281
-					'commit' => $row['changed_revision'],
282
-				];
283
-			}
284
-		}
285
-	}
286
-	return null;
268
+    if (!$dir) {
269
+        $dir = '.';
270
+    }
271
+    // version installee par SVN
272
+    if (file_exists($dir . '/.svn/wc.db') && class_exists('SQLite3')) {
273
+        $db = new SQLite3($dir . '/.svn/wc.db');
274
+        $result = $db->query('SELECT changed_revision FROM nodes WHERE local_relpath = "" LIMIT 1');
275
+        if ($result) {
276
+            $row = $result->fetchArray();
277
+            if ($row['changed_revision'] != "") {
278
+                return [
279
+                    'vcs' => 'SVN',
280
+                    'branch' => '',
281
+                    'commit' => $row['changed_revision'],
282
+                ];
283
+            }
284
+        }
285
+    }
286
+    return null;
287 287
 }
288 288
 
289 289
 // La matrice est necessaire pour ne filtrer _que_ des fonctions definies dans filtres_images
@@ -330,18 +330,18 @@  discard block
 block discarded – undo
330 330
  *     Code HTML retourné par le filtre
331 331
  **/
332 332
 function filtrer($filtre) {
333
-	$tous = func_get_args();
334
-	if (trouver_filtre_matrice($filtre) and substr($filtre, 0, 6) == 'image_') {
335
-		return image_filtrer($tous);
336
-	} elseif ($f = chercher_filtre($filtre)) {
337
-		array_shift($tous);
338
-		return call_user_func_array($f, $tous);
339
-	} else {
340
-		// le filtre n'existe pas, on provoque une erreur
341
-		$msg = array('zbug_erreur_filtre', array('filtre' => texte_script($filtre)));
342
-		erreur_squelette($msg);
343
-		return '';
344
-	}
333
+    $tous = func_get_args();
334
+    if (trouver_filtre_matrice($filtre) and substr($filtre, 0, 6) == 'image_') {
335
+        return image_filtrer($tous);
336
+    } elseif ($f = chercher_filtre($filtre)) {
337
+        array_shift($tous);
338
+        return call_user_func_array($f, $tous);
339
+    } else {
340
+        // le filtre n'existe pas, on provoque une erreur
341
+        $msg = array('zbug_erreur_filtre', array('filtre' => texte_script($filtre)));
342
+        erreur_squelette($msg);
343
+        return '';
344
+    }
345 345
 }
346 346
 
347 347
 /**
@@ -358,11 +358,11 @@  discard block
 block discarded – undo
358 358
  * @return bool true si on trouve le filtre dans la matrice, false sinon.
359 359
  */
360 360
 function trouver_filtre_matrice($filtre) {
361
-	if (isset($GLOBALS['spip_matrice'][$filtre]) and is_string($f = $GLOBALS['spip_matrice'][$filtre])) {
362
-		find_in_path($f, '', true);
363
-		$GLOBALS['spip_matrice'][$filtre] = true;
364
-	}
365
-	return !empty($GLOBALS['spip_matrice'][$filtre]);
361
+    if (isset($GLOBALS['spip_matrice'][$filtre]) and is_string($f = $GLOBALS['spip_matrice'][$filtre])) {
362
+        find_in_path($f, '', true);
363
+        $GLOBALS['spip_matrice'][$filtre] = true;
364
+    }
365
+    return !empty($GLOBALS['spip_matrice'][$filtre]);
366 366
 }
367 367
 
368 368
 
@@ -390,8 +390,8 @@  discard block
 block discarded – undo
390 390
  * @return mixed
391 391
  */
392 392
 function filtre_set(&$Pile, $val, $key, $continue = null) {
393
-	$Pile['vars'][$key] = $val;
394
-	return $continue ? $val : '';
393
+    $Pile['vars'][$key] = $val;
394
+    return $continue ? $val : '';
395 395
 }
396 396
 
397 397
 /**
@@ -417,8 +417,8 @@  discard block
 block discarded – undo
417 417
  * @return string|mixed Retourne `$val` si `$continue` présent, sinon ''.
418 418
  */
419 419
 function filtre_setenv(&$Pile, $val, $key, $continue = null) {
420
-	$Pile[0][$key] = $val;
421
-	return $continue ? $val : '';
420
+    $Pile[0][$key] = $val;
421
+    return $continue ? $val : '';
422 422
 }
423 423
 
424 424
 /**
@@ -427,8 +427,8 @@  discard block
 block discarded – undo
427 427
  * @return string
428 428
  */
429 429
 function filtre_sanitize_env(&$Pile, $keys) {
430
-	$Pile[0] = spip_sanitize_from_request($Pile[0], $keys);
431
-	return '';
430
+    $Pile[0] = spip_sanitize_from_request($Pile[0], $keys);
431
+    return '';
432 432
 }
433 433
 
434 434
 
@@ -451,18 +451,18 @@  discard block
 block discarded – undo
451 451
  * @return mixed Retourne la valeur (sans la modifier).
452 452
  */
453 453
 function filtre_debug($val, $key = null) {
454
-	$debug = (
455
-		is_null($key) ? '' : (var_export($key, true) . " = ")
456
-		) . var_export($val, true);
454
+    $debug = (
455
+        is_null($key) ? '' : (var_export($key, true) . " = ")
456
+        ) . var_export($val, true);
457 457
 
458
-	include_spip('inc/autoriser');
459
-	if (autoriser('webmestre')) {
460
-		echo "<div class='spip_debug'>\n", $debug, "</div>\n";
461
-	}
458
+    include_spip('inc/autoriser');
459
+    if (autoriser('webmestre')) {
460
+        echo "<div class='spip_debug'>\n", $debug, "</div>\n";
461
+    }
462 462
 
463
-	spip_log($debug, 'debug');
463
+    spip_log($debug, 'debug');
464 464
 
465
-	return $val;
465
+    return $val;
466 466
 }
467 467
 
468 468
 
@@ -490,82 +490,82 @@  discard block
 block discarded – undo
490 490
  *     Texte qui a reçu les filtres
491 491
  **/
492 492
 function image_filtrer($args) {
493
-	$filtre = array_shift($args); # enlever $filtre
494
-	$texte = array_shift($args);
495
-	if (!strlen($texte)) {
496
-		return;
497
-	}
498
-	find_in_path('filtres_images_mini.php', 'inc/', true);
499
-	statut_effacer_images_temporaires(true); // activer la suppression des images temporaires car le compilo finit la chaine par un image_graver
500
-	// Cas du nom de fichier local
501
-	$is_file = trim($texte);
502
-	if (strpos(substr($is_file, strlen(_DIR_RACINE)), '..') !== false
503
-		  or strpbrk($is_file, "<>\n\r\t") !== false
504
-		  or strpos($is_file, '/') === 0
505
-	) {
506
-		$is_file = false;
507
-	}
508
-	if ($is_file) {
509
-		$is_local_file = function($path) {
510
-			if (strpos($path, "?") !== false) {
511
-				$path = supprimer_timestamp($path);
512
-				// remove ?24px added by find_in_theme on .svg files
513
-				$path = preg_replace(",\?[[:digit:]]+(px)$,", "", $path);
514
-			}
515
-			return file_exists($path);
516
-		};
517
-		if ($is_local_file($is_file) or tester_url_absolue($is_file)) {
518
-			array_unshift($args, "<img src='$is_file' />");
519
-			$res = call_user_func_array($filtre, $args);
520
-			statut_effacer_images_temporaires(false); // desactiver pour les appels hors compilo
521
-			return $res;
522
-		}
523
-	}
524
-
525
-	// Cas general : trier toutes les images, avec eventuellement leur <span>
526
-	if (preg_match_all(
527
-		',(<([a-z]+) [^<>]*spip_documents[^<>]*>)?\s*(<img\s.*>),UimsS',
528
-		$texte, $tags, PREG_SET_ORDER)) {
529
-		foreach ($tags as $tag) {
530
-			$class = extraire_attribut($tag[3], 'class');
531
-			if (!$class or
532
-				(strpos($class, 'filtre_inactif') === false
533
-					// compat historique a virer en 3.2
534
-					and strpos($class, 'no_image_filtrer') === false)
535
-			) {
536
-				array_unshift($args, $tag[3]);
537
-				if ($reduit = call_user_func_array($filtre, $args)) {
538
-					// En cas de span spip_documents, modifier le style=...width:
539
-					if ($tag[1]) {
540
-						$w = extraire_attribut($reduit, 'width');
541
-						if (!$w and preg_match(",width:\s*(\d+)px,S", extraire_attribut($reduit, 'style'), $regs)) {
542
-							$w = $regs[1];
543
-						}
544
-						if ($w and ($style = extraire_attribut($tag[1], 'style'))) {
545
-							$style = preg_replace(",width:\s*\d+px,S", "width:${w}px", $style);
546
-							$replace = inserer_attribut($tag[1], 'style', $style);
547
-							$texte = str_replace($tag[1], $replace, $texte);
548
-						}
549
-					}
550
-					// traiter aussi un eventuel mouseover
551
-					if ($mouseover = extraire_attribut($reduit, 'onmouseover')) {
552
-						if (preg_match(",this[.]src=['\"]([^'\"]+)['\"],ims", $mouseover, $match)) {
553
-							$srcover = $match[1];
554
-							array_shift($args);
555
-							array_unshift($args, "<img src='" . $match[1] . "' />");
556
-							$srcover_filter = call_user_func_array($filtre, $args);
557
-							$srcover_filter = extraire_attribut($srcover_filter, 'src');
558
-							$reduit = str_replace($srcover, $srcover_filter, $reduit);
559
-						}
560
-					}
561
-					$texte = str_replace($tag[3], $reduit, $texte);
562
-				}
563
-				array_shift($args);
564
-			}
565
-		}
566
-	}
567
-	statut_effacer_images_temporaires(false); // desactiver pour les appels hors compilo
568
-	return $texte;
493
+    $filtre = array_shift($args); # enlever $filtre
494
+    $texte = array_shift($args);
495
+    if (!strlen($texte)) {
496
+        return;
497
+    }
498
+    find_in_path('filtres_images_mini.php', 'inc/', true);
499
+    statut_effacer_images_temporaires(true); // activer la suppression des images temporaires car le compilo finit la chaine par un image_graver
500
+    // Cas du nom de fichier local
501
+    $is_file = trim($texte);
502
+    if (strpos(substr($is_file, strlen(_DIR_RACINE)), '..') !== false
503
+          or strpbrk($is_file, "<>\n\r\t") !== false
504
+          or strpos($is_file, '/') === 0
505
+    ) {
506
+        $is_file = false;
507
+    }
508
+    if ($is_file) {
509
+        $is_local_file = function($path) {
510
+            if (strpos($path, "?") !== false) {
511
+                $path = supprimer_timestamp($path);
512
+                // remove ?24px added by find_in_theme on .svg files
513
+                $path = preg_replace(",\?[[:digit:]]+(px)$,", "", $path);
514
+            }
515
+            return file_exists($path);
516
+        };
517
+        if ($is_local_file($is_file) or tester_url_absolue($is_file)) {
518
+            array_unshift($args, "<img src='$is_file' />");
519
+            $res = call_user_func_array($filtre, $args);
520
+            statut_effacer_images_temporaires(false); // desactiver pour les appels hors compilo
521
+            return $res;
522
+        }
523
+    }
524
+
525
+    // Cas general : trier toutes les images, avec eventuellement leur <span>
526
+    if (preg_match_all(
527
+        ',(<([a-z]+) [^<>]*spip_documents[^<>]*>)?\s*(<img\s.*>),UimsS',
528
+        $texte, $tags, PREG_SET_ORDER)) {
529
+        foreach ($tags as $tag) {
530
+            $class = extraire_attribut($tag[3], 'class');
531
+            if (!$class or
532
+                (strpos($class, 'filtre_inactif') === false
533
+                    // compat historique a virer en 3.2
534
+                    and strpos($class, 'no_image_filtrer') === false)
535
+            ) {
536
+                array_unshift($args, $tag[3]);
537
+                if ($reduit = call_user_func_array($filtre, $args)) {
538
+                    // En cas de span spip_documents, modifier le style=...width:
539
+                    if ($tag[1]) {
540
+                        $w = extraire_attribut($reduit, 'width');
541
+                        if (!$w and preg_match(",width:\s*(\d+)px,S", extraire_attribut($reduit, 'style'), $regs)) {
542
+                            $w = $regs[1];
543
+                        }
544
+                        if ($w and ($style = extraire_attribut($tag[1], 'style'))) {
545
+                            $style = preg_replace(",width:\s*\d+px,S", "width:${w}px", $style);
546
+                            $replace = inserer_attribut($tag[1], 'style', $style);
547
+                            $texte = str_replace($tag[1], $replace, $texte);
548
+                        }
549
+                    }
550
+                    // traiter aussi un eventuel mouseover
551
+                    if ($mouseover = extraire_attribut($reduit, 'onmouseover')) {
552
+                        if (preg_match(",this[.]src=['\"]([^'\"]+)['\"],ims", $mouseover, $match)) {
553
+                            $srcover = $match[1];
554
+                            array_shift($args);
555
+                            array_unshift($args, "<img src='" . $match[1] . "' />");
556
+                            $srcover_filter = call_user_func_array($filtre, $args);
557
+                            $srcover_filter = extraire_attribut($srcover_filter, 'src');
558
+                            $reduit = str_replace($srcover, $srcover_filter, $reduit);
559
+                        }
560
+                    }
561
+                    $texte = str_replace($tag[3], $reduit, $texte);
562
+                }
563
+                array_shift($args);
564
+            }
565
+        }
566
+    }
567
+    statut_effacer_images_temporaires(false); // desactiver pour les appels hors compilo
568
+    return $texte;
569 569
 }
570 570
 
571 571
 /**
@@ -580,77 +580,77 @@  discard block
 block discarded – undo
580 580
  **/
581 581
 function taille_image($img, $force_refresh = false) {
582 582
 
583
-	static $largeur_img = array(), $hauteur_img = array();
584
-	$srcWidth = 0;
585
-	$srcHeight = 0;
586
-
587
-	$src = extraire_attribut($img, 'src');
588
-
589
-	if (!$src) {
590
-		$src = $img;
591
-	} else {
592
-		$srcWidth = extraire_attribut($img, 'width');
593
-		$srcHeight = extraire_attribut($img, 'height');
594
-	}
595
-
596
-	// ne jamais operer directement sur une image distante pour des raisons de perfo
597
-	// la copie locale a toutes les chances d'etre la ou de resservir
598
-	if (tester_url_absolue($src)) {
599
-		include_spip('inc/distant');
600
-		$fichier = copie_locale($src);
601
-		$src = $fichier ? _DIR_RACINE . $fichier : $src;
602
-	}
603
-	if (($p = strpos($src, '?')) !== false) {
604
-		$src = substr($src, 0, $p);
605
-	}
606
-
607
-	$srcsize = false;
608
-	if (isset($largeur_img[$src]) and !$force_refresh) {
609
-		$srcWidth = $largeur_img[$src];
610
-	}
611
-	if (isset($hauteur_img[$src]) and !$force_refresh) {
612
-		$srcHeight = $hauteur_img[$src];
613
-	}
614
-	if (!$srcWidth or !$srcHeight) {
615
-
616
-		if (file_exists($src)
617
-			and $srcsize = spip_getimagesize($src)
618
-		) {
619
-			if (!$srcWidth) {
620
-				$largeur_img[$src] = $srcWidth = $srcsize[0];
621
-			}
622
-			if (!$srcHeight) {
623
-				$hauteur_img[$src] = $srcHeight = $srcsize[1];
624
-			}
625
-		}
626
-		elseif(strpos($src, "<svg") !== false) {
627
-			include_spip('inc/svg');
628
-			if ($attrs = svg_lire_attributs($src)){
629
-				list($width, $height, $viewbox) = svg_getimagesize_from_attr($attrs);
630
-				if (!$srcWidth){
631
-					$largeur_img[$src] = $srcWidth = $width;
632
-				}
633
-				if (!$srcHeight){
634
-					$hauteur_img[$src] = $srcHeight = $height;
635
-				}
636
-			}
637
-		}
638
-		// $src peut etre une reference a une image temporaire dont a n'a que le log .src
639
-		// on s'y refere, l'image sera reconstruite en temps utile si necessaire
640
-		elseif (@file_exists($f = "$src.src")
641
-			and lire_fichier($f, $valeurs)
642
-			and $valeurs = unserialize($valeurs)
643
-		) {
644
-			if (!$srcWidth) {
645
-				$largeur_img[$src] = $srcWidth = $valeurs["largeur_dest"];
646
-			}
647
-			if (!$srcHeight) {
648
-				$hauteur_img[$src] = $srcHeight = $valeurs["hauteur_dest"];
649
-			}
650
-		}
651
-	}
652
-
653
-	return array($srcHeight, $srcWidth);
583
+    static $largeur_img = array(), $hauteur_img = array();
584
+    $srcWidth = 0;
585
+    $srcHeight = 0;
586
+
587
+    $src = extraire_attribut($img, 'src');
588
+
589
+    if (!$src) {
590
+        $src = $img;
591
+    } else {
592
+        $srcWidth = extraire_attribut($img, 'width');
593
+        $srcHeight = extraire_attribut($img, 'height');
594
+    }
595
+
596
+    // ne jamais operer directement sur une image distante pour des raisons de perfo
597
+    // la copie locale a toutes les chances d'etre la ou de resservir
598
+    if (tester_url_absolue($src)) {
599
+        include_spip('inc/distant');
600
+        $fichier = copie_locale($src);
601
+        $src = $fichier ? _DIR_RACINE . $fichier : $src;
602
+    }
603
+    if (($p = strpos($src, '?')) !== false) {
604
+        $src = substr($src, 0, $p);
605
+    }
606
+
607
+    $srcsize = false;
608
+    if (isset($largeur_img[$src]) and !$force_refresh) {
609
+        $srcWidth = $largeur_img[$src];
610
+    }
611
+    if (isset($hauteur_img[$src]) and !$force_refresh) {
612
+        $srcHeight = $hauteur_img[$src];
613
+    }
614
+    if (!$srcWidth or !$srcHeight) {
615
+
616
+        if (file_exists($src)
617
+            and $srcsize = spip_getimagesize($src)
618
+        ) {
619
+            if (!$srcWidth) {
620
+                $largeur_img[$src] = $srcWidth = $srcsize[0];
621
+            }
622
+            if (!$srcHeight) {
623
+                $hauteur_img[$src] = $srcHeight = $srcsize[1];
624
+            }
625
+        }
626
+        elseif(strpos($src, "<svg") !== false) {
627
+            include_spip('inc/svg');
628
+            if ($attrs = svg_lire_attributs($src)){
629
+                list($width, $height, $viewbox) = svg_getimagesize_from_attr($attrs);
630
+                if (!$srcWidth){
631
+                    $largeur_img[$src] = $srcWidth = $width;
632
+                }
633
+                if (!$srcHeight){
634
+                    $hauteur_img[$src] = $srcHeight = $height;
635
+                }
636
+            }
637
+        }
638
+        // $src peut etre une reference a une image temporaire dont a n'a que le log .src
639
+        // on s'y refere, l'image sera reconstruite en temps utile si necessaire
640
+        elseif (@file_exists($f = "$src.src")
641
+            and lire_fichier($f, $valeurs)
642
+            and $valeurs = unserialize($valeurs)
643
+        ) {
644
+            if (!$srcWidth) {
645
+                $largeur_img[$src] = $srcWidth = $valeurs["largeur_dest"];
646
+            }
647
+            if (!$srcHeight) {
648
+                $hauteur_img[$src] = $srcHeight = $valeurs["hauteur_dest"];
649
+            }
650
+        }
651
+    }
652
+
653
+    return array($srcHeight, $srcWidth);
654 654
 }
655 655
 
656 656
 
@@ -668,12 +668,12 @@  discard block
 block discarded – undo
668 668
  *     Largeur en pixels, NULL ou 0 si aucune image.
669 669
  **/
670 670
 function largeur($img) {
671
-	if (!$img) {
672
-		return;
673
-	}
674
-	list($h, $l) = taille_image($img);
671
+    if (!$img) {
672
+        return;
673
+    }
674
+    list($h, $l) = taille_image($img);
675 675
 
676
-	return $l;
676
+    return $l;
677 677
 }
678 678
 
679 679
 /**
@@ -690,12 +690,12 @@  discard block
 block discarded – undo
690 690
  *     Hauteur en pixels, NULL ou 0 si aucune image.
691 691
  **/
692 692
 function hauteur($img) {
693
-	if (!$img) {
694
-		return;
695
-	}
696
-	list($h, $l) = taille_image($img);
693
+    if (!$img) {
694
+        return;
695
+    }
696
+    list($h, $l) = taille_image($img);
697 697
 
698
-	return $h;
698
+    return $h;
699 699
 }
700 700
 
701 701
 
@@ -715,11 +715,11 @@  discard block
 block discarded – undo
715 715
  * @return string
716 716
  **/
717 717
 function corriger_entites_html($texte) {
718
-	if (strpos($texte, '&amp;') === false) {
719
-		return $texte;
720
-	}
718
+    if (strpos($texte, '&amp;') === false) {
719
+        return $texte;
720
+    }
721 721
 
722
-	return preg_replace(',&amp;(#[0-9][0-9][0-9]+;|amp;),iS', '&\1', $texte);
722
+    return preg_replace(',&amp;(#[0-9][0-9][0-9]+;|amp;),iS', '&\1', $texte);
723 723
 }
724 724
 
725 725
 /**
@@ -734,11 +734,11 @@  discard block
 block discarded – undo
734 734
  * @return string
735 735
  **/
736 736
 function corriger_toutes_entites_html($texte) {
737
-	if (strpos($texte, '&amp;') === false) {
738
-		return $texte;
739
-	}
737
+    if (strpos($texte, '&amp;') === false) {
738
+        return $texte;
739
+    }
740 740
 
741
-	return preg_replace(',&amp;(#?[a-z0-9]+;),iS', '&\1', $texte);
741
+    return preg_replace(',&amp;(#?[a-z0-9]+;),iS', '&\1', $texte);
742 742
 }
743 743
 
744 744
 /**
@@ -748,7 +748,7 @@  discard block
 block discarded – undo
748 748
  * @return string
749 749
  **/
750 750
 function proteger_amp($texte) {
751
-	return str_replace('&', '&amp;', $texte);
751
+    return str_replace('&', '&amp;', $texte);
752 752
 }
753 753
 
754 754
 
@@ -779,20 +779,20 @@  discard block
 block discarded – undo
779 779
  * @return mixed|string
780 780
  */
781 781
 function entites_html($texte, $tout = false, $quote = true) {
782
-	if (!is_string($texte) or !$texte
783
-		or strpbrk($texte, "&\"'<>") == false
784
-	) {
785
-		return $texte;
786
-	}
787
-	include_spip('inc/texte');
788
-	$flags = ($quote ? ENT_QUOTES : ENT_NOQUOTES);
789
-	$flags |= ENT_HTML401;
790
-	$texte = spip_htmlspecialchars(echappe_retour(echappe_html($texte, '', true), '', 'proteger_amp'), $flags);
791
-	if ($tout) {
792
-		return corriger_toutes_entites_html($texte);
793
-	} else {
794
-		return corriger_entites_html($texte);
795
-	}
782
+    if (!is_string($texte) or !$texte
783
+        or strpbrk($texte, "&\"'<>") == false
784
+    ) {
785
+        return $texte;
786
+    }
787
+    include_spip('inc/texte');
788
+    $flags = ($quote ? ENT_QUOTES : ENT_NOQUOTES);
789
+    $flags |= ENT_HTML401;
790
+    $texte = spip_htmlspecialchars(echappe_retour(echappe_html($texte, '', true), '', 'proteger_amp'), $flags);
791
+    if ($tout) {
792
+        return corriger_toutes_entites_html($texte);
793
+    } else {
794
+        return corriger_entites_html($texte);
795
+    }
796 796
 }
797 797
 
798 798
 /**
@@ -811,37 +811,37 @@  discard block
 block discarded – undo
811 811
  *     Texte converti
812 812
  **/
813 813
 function filtrer_entites($texte) {
814
-	if (strpos($texte, '&') === false) {
815
-		return $texte;
816
-	}
817
-	// filtrer
818
-	$texte = html2unicode($texte);
819
-	// remettre le tout dans le charset cible
820
-	$texte = unicode2charset($texte);
821
-	// cas particulier des " et ' qu'il faut filtrer aussi
822
-	// (on le faisait deja avec un &quot;)
823
-	if (strpos($texte, "&#") !== false) {
824
-		$texte = str_replace(array("&#039;", "&#39;", "&#034;", "&#34;"), array("'", "'", '"', '"'), $texte);
825
-	}
814
+    if (strpos($texte, '&') === false) {
815
+        return $texte;
816
+    }
817
+    // filtrer
818
+    $texte = html2unicode($texte);
819
+    // remettre le tout dans le charset cible
820
+    $texte = unicode2charset($texte);
821
+    // cas particulier des " et ' qu'il faut filtrer aussi
822
+    // (on le faisait deja avec un &quot;)
823
+    if (strpos($texte, "&#") !== false) {
824
+        $texte = str_replace(array("&#039;", "&#39;", "&#034;", "&#34;"), array("'", "'", '"', '"'), $texte);
825
+    }
826 826
 
827
-	return $texte;
827
+    return $texte;
828 828
 }
829 829
 
830 830
 
831 831
 if (!function_exists('filtre_filtrer_entites_dist')) {
832
-	/**
833
-	 * Version sécurisée de filtrer_entites
834
-	 * 
835
-	 * @uses interdire_scripts()
836
-	 * @uses filtrer_entites()
837
-	 * 
838
-	 * @param string $t
839
-	 * @return string
840
-	 */
841
-	function filtre_filtrer_entites_dist($t) {
842
-		include_spip('inc/texte');
843
-		return interdire_scripts(filtrer_entites($t));
844
-	}
832
+    /**
833
+     * Version sécurisée de filtrer_entites
834
+     * 
835
+     * @uses interdire_scripts()
836
+     * @uses filtrer_entites()
837
+     * 
838
+     * @param string $t
839
+     * @return string
840
+     */
841
+    function filtre_filtrer_entites_dist($t) {
842
+        include_spip('inc/texte');
843
+        return interdire_scripts(filtrer_entites($t));
844
+    }
845 845
 }
846 846
 
847 847
 
@@ -856,18 +856,18 @@  discard block
 block discarded – undo
856 856
  * @return string|array
857 857
  **/
858 858
 function supprimer_caracteres_illegaux($texte) {
859
-	static $from = "\x0\x1\x2\x3\x4\x5\x6\x7\x8\xB\xC\xE\xF\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F";
860
-	static $to = null;
859
+    static $from = "\x0\x1\x2\x3\x4\x5\x6\x7\x8\xB\xC\xE\xF\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F";
860
+    static $to = null;
861 861
 
862
-	if (is_array($texte)) {
863
-		return array_map('supprimer_caracteres_illegaux', $texte);
864
-	}
862
+    if (is_array($texte)) {
863
+        return array_map('supprimer_caracteres_illegaux', $texte);
864
+    }
865 865
 
866
-	if (!$to) {
867
-		$to = str_repeat('-', strlen($from));
868
-	}
866
+    if (!$to) {
867
+        $to = str_repeat('-', strlen($from));
868
+    }
869 869
 
870
-	return strtr($texte, $from, $to);
870
+    return strtr($texte, $from, $to);
871 871
 }
872 872
 
873 873
 /**
@@ -879,10 +879,10 @@  discard block
 block discarded – undo
879 879
  * @return string|array
880 880
  **/
881 881
 function corriger_caracteres($texte) {
882
-	$texte = corriger_caracteres_windows($texte);
883
-	$texte = supprimer_caracteres_illegaux($texte);
882
+    $texte = corriger_caracteres_windows($texte);
883
+    $texte = supprimer_caracteres_illegaux($texte);
884 884
 
885
-	return $texte;
885
+    return $texte;
886 886
 }
887 887
 
888 888
 /**
@@ -900,40 +900,40 @@  discard block
 block discarded – undo
900 900
  */
901 901
 function texte_backend($texte) {
902 902
 
903
-	static $apostrophe = array("&#8217;", "'"); # n'allouer qu'une fois
903
+    static $apostrophe = array("&#8217;", "'"); # n'allouer qu'une fois
904 904
 
905
-	// si on a des liens ou des images, les passer en absolu
906
-	$texte = liens_absolus($texte);
905
+    // si on a des liens ou des images, les passer en absolu
906
+    $texte = liens_absolus($texte);
907 907
 
908
-	// echapper les tags &gt; &lt;
909
-	$texte = preg_replace(',&(gt|lt);,S', '&amp;\1;', $texte);
908
+    // echapper les tags &gt; &lt;
909
+    $texte = preg_replace(',&(gt|lt);,S', '&amp;\1;', $texte);
910 910
 
911
-	// importer les &eacute;
912
-	$texte = filtrer_entites($texte);
911
+    // importer les &eacute;
912
+    $texte = filtrer_entites($texte);
913 913
 
914
-	// " -> &quot; et tout ce genre de choses
915
-	$u = $GLOBALS['meta']['pcre_u'];
916
-	$texte = str_replace("&nbsp;", " ", $texte);
917
-	$texte = preg_replace('/\s{2,}/S' . $u, " ", $texte);
918
-	// ne pas echapper les sinqle quotes car certains outils de syndication gerent mal
919
-	$texte = entites_html($texte, false, false);
920
-	// mais bien echapper les double quotes !
921
-	$texte = str_replace('"', '&#034;', $texte);
914
+    // " -> &quot; et tout ce genre de choses
915
+    $u = $GLOBALS['meta']['pcre_u'];
916
+    $texte = str_replace("&nbsp;", " ", $texte);
917
+    $texte = preg_replace('/\s{2,}/S' . $u, " ", $texte);
918
+    // ne pas echapper les sinqle quotes car certains outils de syndication gerent mal
919
+    $texte = entites_html($texte, false, false);
920
+    // mais bien echapper les double quotes !
921
+    $texte = str_replace('"', '&#034;', $texte);
922 922
 
923
-	// verifier le charset
924
-	$texte = charset2unicode($texte);
923
+    // verifier le charset
924
+    $texte = charset2unicode($texte);
925 925
 
926
-	// Caracteres problematiques en iso-latin 1
927
-	if (isset($GLOBALS['meta']['charset']) and $GLOBALS['meta']['charset'] == 'iso-8859-1') {
928
-		$texte = str_replace(chr(156), '&#156;', $texte);
929
-		$texte = str_replace(chr(140), '&#140;', $texte);
930
-		$texte = str_replace(chr(159), '&#159;', $texte);
931
-	}
926
+    // Caracteres problematiques en iso-latin 1
927
+    if (isset($GLOBALS['meta']['charset']) and $GLOBALS['meta']['charset'] == 'iso-8859-1') {
928
+        $texte = str_replace(chr(156), '&#156;', $texte);
929
+        $texte = str_replace(chr(140), '&#140;', $texte);
930
+        $texte = str_replace(chr(159), '&#159;', $texte);
931
+    }
932 932
 
933
-	// l'apostrophe curly pose probleme a certains lecteure de RSS
934
-	// et le caractere apostrophe alourdit les squelettes avec PHP
935
-	// ==> on les remplace par l'entite HTML
936
-	return str_replace($apostrophe, "'", $texte);
933
+    // l'apostrophe curly pose probleme a certains lecteure de RSS
934
+    // et le caractere apostrophe alourdit les squelettes avec PHP
935
+    // ==> on les remplace par l'entite HTML
936
+    return str_replace($apostrophe, "'", $texte);
937 937
 }
938 938
 
939 939
 /**
@@ -950,7 +950,7 @@  discard block
 block discarded – undo
950 950
  *     Texte encodé et quote pour XML
951 951
  */
952 952
 function texte_backendq($texte) {
953
-	return addslashes(texte_backend($texte));
953
+    return addslashes(texte_backend($texte));
954 954
 }
955 955
 
956 956
 
@@ -973,9 +973,9 @@  discard block
 block discarded – undo
973 973
  *     Numéro de titre, sinon chaîne vide
974 974
  **/
975 975
 function supprimer_numero($texte) {
976
-	return preg_replace(
977
-		",^[[:space:]]*([0-9]+)([.)]|" . chr(194) . '?' . chr(176) . ")[[:space:]]+,S",
978
-		"", $texte);
976
+    return preg_replace(
977
+        ",^[[:space:]]*([0-9]+)([.)]|" . chr(194) . '?' . chr(176) . ")[[:space:]]+,S",
978
+        "", $texte);
979 979
 }
980 980
 
981 981
 /**
@@ -998,13 +998,13 @@  discard block
 block discarded – undo
998 998
  *     Numéro de titre, sinon chaîne vide
999 999
  **/
1000 1000
 function recuperer_numero($texte) {
1001
-	if (preg_match(
1002
-		",^[[:space:]]*([0-9]+)([.)]|" . chr(194) . '?' . chr(176) . ")[[:space:]]+,S",
1003
-		$texte, $regs)) {
1004
-		return strval($regs[1]);
1005
-	} else {
1006
-		return '';
1007
-	}
1001
+    if (preg_match(
1002
+        ",^[[:space:]]*([0-9]+)([.)]|" . chr(194) . '?' . chr(176) . ")[[:space:]]+,S",
1003
+        $texte, $regs)) {
1004
+        return strval($regs[1]);
1005
+    } else {
1006
+        return '';
1007
+    }
1008 1008
 }
1009 1009
 
1010 1010
 /**
@@ -1031,13 +1031,13 @@  discard block
 block discarded – undo
1031 1031
  *     Texte converti
1032 1032
  **/
1033 1033
 function supprimer_tags($texte, $rempl = "") {
1034
-	$texte = preg_replace(",<(!--|\w|/|!\[endif|!\[if)[^>]*>,US", $rempl, $texte);
1035
-	// ne pas oublier un < final non ferme car coupe
1036
-	$texte = preg_replace(",<(!--|\w|/).*$,US", $rempl, $texte);
1037
-	// mais qui peut aussi etre un simple signe plus petit que
1038
-	$texte = str_replace('<', '&lt;', $texte);
1034
+    $texte = preg_replace(",<(!--|\w|/|!\[endif|!\[if)[^>]*>,US", $rempl, $texte);
1035
+    // ne pas oublier un < final non ferme car coupe
1036
+    $texte = preg_replace(",<(!--|\w|/).*$,US", $rempl, $texte);
1037
+    // mais qui peut aussi etre un simple signe plus petit que
1038
+    $texte = str_replace('<', '&lt;', $texte);
1039 1039
 
1040
-	return $texte;
1040
+    return $texte;
1041 1041
 }
1042 1042
 
1043 1043
 /**
@@ -1060,9 +1060,9 @@  discard block
 block discarded – undo
1060 1060
  *     Texte converti
1061 1061
  **/
1062 1062
 function echapper_tags($texte, $rempl = "") {
1063
-	$texte = preg_replace("/<([^>]*)>/", "&lt;\\1&gt;", $texte);
1063
+    $texte = preg_replace("/<([^>]*)>/", "&lt;\\1&gt;", $texte);
1064 1064
 
1065
-	return $texte;
1065
+    return $texte;
1066 1066
 }
1067 1067
 
1068 1068
 /**
@@ -1083,18 +1083,18 @@  discard block
 block discarded – undo
1083 1083
  *     Texte converti
1084 1084
  **/
1085 1085
 function textebrut($texte) {
1086
-	$u = $GLOBALS['meta']['pcre_u'];
1087
-	$texte = preg_replace('/\s+/S' . $u, " ", $texte);
1088
-	$texte = preg_replace("/<(p|br)( [^>]*)?" . ">/iS", "\n\n", $texte);
1089
-	$texte = preg_replace("/^\n+/", "", $texte);
1090
-	$texte = preg_replace("/\n+$/", "", $texte);
1091
-	$texte = preg_replace("/\n +/", "\n", $texte);
1092
-	$texte = supprimer_tags($texte);
1093
-	$texte = preg_replace("/(&nbsp;| )+/S", " ", $texte);
1094
-	// nettoyer l'apostrophe curly qui pose probleme a certains rss-readers, lecteurs de mail...
1095
-	$texte = str_replace("&#8217;", "'", $texte);
1086
+    $u = $GLOBALS['meta']['pcre_u'];
1087
+    $texte = preg_replace('/\s+/S' . $u, " ", $texte);
1088
+    $texte = preg_replace("/<(p|br)( [^>]*)?" . ">/iS", "\n\n", $texte);
1089
+    $texte = preg_replace("/^\n+/", "", $texte);
1090
+    $texte = preg_replace("/\n+$/", "", $texte);
1091
+    $texte = preg_replace("/\n +/", "\n", $texte);
1092
+    $texte = supprimer_tags($texte);
1093
+    $texte = preg_replace("/(&nbsp;| )+/S", " ", $texte);
1094
+    // nettoyer l'apostrophe curly qui pose probleme a certains rss-readers, lecteurs de mail...
1095
+    $texte = str_replace("&#8217;", "'", $texte);
1096 1096
 
1097
-	return $texte;
1097
+    return $texte;
1098 1098
 }
1099 1099
 
1100 1100
 
@@ -1110,17 +1110,17 @@  discard block
 block discarded – undo
1110 1110
  *     Texte avec liens ouvrants
1111 1111
  **/
1112 1112
 function liens_ouvrants($texte) {
1113
-	if (preg_match_all(",(<a\s+[^>]*https?://[^>]*class=[\"']spip_(out|url)\b[^>]+>),imsS",
1114
-		$texte, $liens, PREG_PATTERN_ORDER)) {
1115
-		foreach ($liens[0] as $a) {
1116
-			$rel = 'noopener noreferrer ' . extraire_attribut($a, 'rel');
1117
-			$ablank = inserer_attribut($a, 'rel', $rel);
1118
-			$ablank = inserer_attribut($ablank, 'target', '_blank');
1119
-			$texte = str_replace($a, $ablank, $texte);
1120
-		}
1121
-	}
1113
+    if (preg_match_all(",(<a\s+[^>]*https?://[^>]*class=[\"']spip_(out|url)\b[^>]+>),imsS",
1114
+        $texte, $liens, PREG_PATTERN_ORDER)) {
1115
+        foreach ($liens[0] as $a) {
1116
+            $rel = 'noopener noreferrer ' . extraire_attribut($a, 'rel');
1117
+            $ablank = inserer_attribut($a, 'rel', $rel);
1118
+            $ablank = inserer_attribut($ablank, 'target', '_blank');
1119
+            $texte = str_replace($a, $ablank, $texte);
1120
+        }
1121
+    }
1122 1122
 
1123
-	return $texte;
1123
+    return $texte;
1124 1124
 }
1125 1125
 
1126 1126
 /**
@@ -1130,22 +1130,22 @@  discard block
 block discarded – undo
1130 1130
  * @return string
1131 1131
  */
1132 1132
 function liens_nofollow($texte) {
1133
-	if (stripos($texte, "<a") === false) {
1134
-		return $texte;
1135
-	}
1133
+    if (stripos($texte, "<a") === false) {
1134
+        return $texte;
1135
+    }
1136 1136
 
1137
-	if (preg_match_all(",<a\b[^>]*>,UimsS", $texte, $regs, PREG_PATTERN_ORDER)) {
1138
-		foreach ($regs[0] as $a) {
1139
-			$rel = extraire_attribut($a, "rel");
1140
-			if (strpos($rel, "nofollow") === false) {
1141
-				$rel = "nofollow" . ($rel ? " $rel" : "");
1142
-				$anofollow = inserer_attribut($a, "rel", $rel);
1143
-				$texte = str_replace($a, $anofollow, $texte);
1144
-			}
1145
-		}
1146
-	}
1137
+    if (preg_match_all(",<a\b[^>]*>,UimsS", $texte, $regs, PREG_PATTERN_ORDER)) {
1138
+        foreach ($regs[0] as $a) {
1139
+            $rel = extraire_attribut($a, "rel");
1140
+            if (strpos($rel, "nofollow") === false) {
1141
+                $rel = "nofollow" . ($rel ? " $rel" : "");
1142
+                $anofollow = inserer_attribut($a, "rel", $rel);
1143
+                $texte = str_replace($a, $anofollow, $texte);
1144
+            }
1145
+        }
1146
+    }
1147 1147
 
1148
-	return $texte;
1148
+    return $texte;
1149 1149
 }
1150 1150
 
1151 1151
 /**
@@ -1164,12 +1164,12 @@  discard block
 block discarded – undo
1164 1164
  *     Texte sans paraghaphes
1165 1165
  **/
1166 1166
 function PtoBR($texte) {
1167
-	$u = $GLOBALS['meta']['pcre_u'];
1168
-	$texte = preg_replace("@</p>@iS", "\n", $texte);
1169
-	$texte = preg_replace("@<p\b.*>@UiS", "<br />", $texte);
1170
-	$texte = preg_replace("@^\s*<br />@S" . $u, "", $texte);
1167
+    $u = $GLOBALS['meta']['pcre_u'];
1168
+    $texte = preg_replace("@</p>@iS", "\n", $texte);
1169
+    $texte = preg_replace("@<p\b.*>@UiS", "<br />", $texte);
1170
+    $texte = preg_replace("@^\s*<br />@S" . $u, "", $texte);
1171 1171
 
1172
-	return $texte;
1172
+    return $texte;
1173 1173
 }
1174 1174
 
1175 1175
 
@@ -1194,14 +1194,14 @@  discard block
 block discarded – undo
1194 1194
  * @return string Texte encadré du style CSS
1195 1195
  */
1196 1196
 function lignes_longues($texte) {
1197
-	if (!strlen(trim($texte))) {
1198
-		return $texte;
1199
-	}
1200
-	include_spip('inc/texte');
1201
-	$tag = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $texte) ?
1202
-		'div' : 'span';
1197
+    if (!strlen(trim($texte))) {
1198
+        return $texte;
1199
+    }
1200
+    include_spip('inc/texte');
1201
+    $tag = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $texte) ?
1202
+        'div' : 'span';
1203 1203
 
1204
-	return "<$tag style='word-wrap:break-word;'>$texte</$tag>";
1204
+    return "<$tag style='word-wrap:break-word;'>$texte</$tag>";
1205 1205
 }
1206 1206
 
1207 1207
 /**
@@ -1220,30 +1220,30 @@  discard block
 block discarded – undo
1220 1220
  * @return string Texte en majuscule
1221 1221
  */
1222 1222
 function majuscules($texte) {
1223
-	if (!strlen($texte)) {
1224
-		return '';
1225
-	}
1223
+    if (!strlen($texte)) {
1224
+        return '';
1225
+    }
1226 1226
 
1227
-	// Cas du turc
1228
-	if ($GLOBALS['spip_lang'] == 'tr') {
1229
-		# remplacer hors des tags et des entites
1230
-		if (preg_match_all(',<[^<>]+>|&[^;]+;,S', $texte, $regs, PREG_SET_ORDER)) {
1231
-			foreach ($regs as $n => $match) {
1232
-				$texte = str_replace($match[0], "@@SPIP_TURC$n@@", $texte);
1233
-			}
1234
-		}
1227
+    // Cas du turc
1228
+    if ($GLOBALS['spip_lang'] == 'tr') {
1229
+        # remplacer hors des tags et des entites
1230
+        if (preg_match_all(',<[^<>]+>|&[^;]+;,S', $texte, $regs, PREG_SET_ORDER)) {
1231
+            foreach ($regs as $n => $match) {
1232
+                $texte = str_replace($match[0], "@@SPIP_TURC$n@@", $texte);
1233
+            }
1234
+        }
1235 1235
 
1236
-		$texte = str_replace('i', '&#304;', $texte);
1236
+        $texte = str_replace('i', '&#304;', $texte);
1237 1237
 
1238
-		if ($regs) {
1239
-			foreach ($regs as $n => $match) {
1240
-				$texte = str_replace("@@SPIP_TURC$n@@", $match[0], $texte);
1241
-			}
1242
-		}
1243
-	}
1238
+        if ($regs) {
1239
+            foreach ($regs as $n => $match) {
1240
+                $texte = str_replace("@@SPIP_TURC$n@@", $match[0], $texte);
1241
+            }
1242
+        }
1243
+    }
1244 1244
 
1245
-	// Cas general
1246
-	return "<span style='text-transform: uppercase;'>$texte</span>";
1245
+    // Cas general
1246
+    return "<span style='text-transform: uppercase;'>$texte</span>";
1247 1247
 }
1248 1248
 
1249 1249
 /**
@@ -1261,29 +1261,29 @@  discard block
 block discarded – undo
1261 1261
  * @return string
1262 1262
  **/
1263 1263
 function taille_en_octets($taille) {
1264
-	if (!defined('_KILOBYTE')) {
1265
-		/**
1266
-		 * Définit le nombre d'octets dans un Kilobyte
1267
-		 *
1268
-		 * @var int
1269
-		 **/
1270
-		define('_KILOBYTE', 1024);
1271
-	}
1264
+    if (!defined('_KILOBYTE')) {
1265
+        /**
1266
+         * Définit le nombre d'octets dans un Kilobyte
1267
+         *
1268
+         * @var int
1269
+         **/
1270
+        define('_KILOBYTE', 1024);
1271
+    }
1272 1272
 
1273
-	if ($taille < 1) {
1274
-		return '';
1275
-	}
1276
-	if ($taille < _KILOBYTE) {
1277
-		$taille = _T('taille_octets', array('taille' => $taille));
1278
-	} elseif ($taille < _KILOBYTE * _KILOBYTE) {
1279
-		$taille = _T('taille_ko', array('taille' => round($taille / _KILOBYTE, 1)));
1280
-	} elseif ($taille < _KILOBYTE * _KILOBYTE * _KILOBYTE) {
1281
-		$taille = _T('taille_mo', array('taille' => round($taille / _KILOBYTE / _KILOBYTE, 1)));
1282
-	} else {
1283
-		$taille = _T('taille_go', array('taille' => round($taille / _KILOBYTE / _KILOBYTE / _KILOBYTE, 2)));
1284
-	}
1273
+    if ($taille < 1) {
1274
+        return '';
1275
+    }
1276
+    if ($taille < _KILOBYTE) {
1277
+        $taille = _T('taille_octets', array('taille' => $taille));
1278
+    } elseif ($taille < _KILOBYTE * _KILOBYTE) {
1279
+        $taille = _T('taille_ko', array('taille' => round($taille / _KILOBYTE, 1)));
1280
+    } elseif ($taille < _KILOBYTE * _KILOBYTE * _KILOBYTE) {
1281
+        $taille = _T('taille_mo', array('taille' => round($taille / _KILOBYTE / _KILOBYTE, 1)));
1282
+    } else {
1283
+        $taille = _T('taille_go', array('taille' => round($taille / _KILOBYTE / _KILOBYTE / _KILOBYTE, 2)));
1284
+    }
1285 1285
 
1286
-	return $taille;
1286
+    return $taille;
1287 1287
 }
1288 1288
 
1289 1289
 
@@ -1305,15 +1305,15 @@  discard block
 block discarded – undo
1305 1305
  *     Texte prêt pour être utilisé en attribut HTML
1306 1306
  **/
1307 1307
 function attribut_html($texte, $textebrut = true) {
1308
-	$u = $GLOBALS['meta']['pcre_u'];
1309
-	if ($textebrut) {
1310
-		$texte = preg_replace(array(",\n,", ",\s(?=\s),msS" . $u), array(" ", ""), textebrut($texte));
1311
-	}
1312
-	$texte = texte_backend($texte);
1313
-	$texte = str_replace(array("'", '"'), array('&#039;', '&#034;'), $texte);
1308
+    $u = $GLOBALS['meta']['pcre_u'];
1309
+    if ($textebrut) {
1310
+        $texte = preg_replace(array(",\n,", ",\s(?=\s),msS" . $u), array(" ", ""), textebrut($texte));
1311
+    }
1312
+    $texte = texte_backend($texte);
1313
+    $texte = str_replace(array("'", '"'), array('&#039;', '&#034;'), $texte);
1314 1314
 
1315
-	return preg_replace(array("/&(amp;|#38;)/", "/&(?![A-Za-z]{0,4}\w{2,3};|#[0-9]{2,5};)/"), array("&", "&#38;"),
1316
-		$texte);
1315
+    return preg_replace(array("/&(amp;|#38;)/", "/&(?![A-Za-z]{0,4}\w{2,3};|#[0-9]{2,5};)/"), array("&", "&#38;"),
1316
+        $texte);
1317 1317
 }
1318 1318
 
1319 1319
 
@@ -1333,12 +1333,12 @@  discard block
 block discarded – undo
1333 1333
  *     URL ou chaîne vide
1334 1334
  **/
1335 1335
 function vider_url($url, $entites = true) {
1336
-	# un message pour abs_url
1337
-	$GLOBALS['mode_abs_url'] = 'url';
1338
-	$url = trim($url);
1339
-	$r = ",^(?:" . _PROTOCOLES_STD . '):?/?/?$,iS';
1336
+    # un message pour abs_url
1337
+    $GLOBALS['mode_abs_url'] = 'url';
1338
+    $url = trim($url);
1339
+    $r = ",^(?:" . _PROTOCOLES_STD . '):?/?/?$,iS';
1340 1340
 
1341
-	return preg_match($r, $url) ? '' : ($entites ? entites_html($url) : $url);
1341
+    return preg_match($r, $url) ? '' : ($entites ? entites_html($url) : $url);
1342 1342
 }
1343 1343
 
1344 1344
 
@@ -1353,10 +1353,10 @@  discard block
 block discarded – undo
1353 1353
  * @return string Adresse email maquillée
1354 1354
  **/
1355 1355
 function antispam($texte) {
1356
-	include_spip('inc/acces');
1357
-	$masque = creer_pass_aleatoire(3);
1356
+    include_spip('inc/acces');
1357
+    $masque = creer_pass_aleatoire(3);
1358 1358
 
1359
-	return preg_replace("/@/", " $masque ", $texte);
1359
+    return preg_replace("/@/", " $masque ", $texte);
1360 1360
 }
1361 1361
 
1362 1362
 /**
@@ -1388,12 +1388,12 @@  discard block
 block discarded – undo
1388 1388
  *     True si on a le droit d'accès, false sinon.
1389 1389
  **/
1390 1390
 function securiser_acces($id_auteur, $cle, $dir, $op = '', $args = '') {
1391
-	include_spip('inc/acces');
1392
-	if ($op) {
1393
-		$dir .= " $op $args";
1394
-	}
1391
+    include_spip('inc/acces');
1392
+    if ($op) {
1393
+        $dir .= " $op $args";
1394
+    }
1395 1395
 
1396
-	return verifier_low_sec($id_auteur, $cle, $dir);
1396
+    return verifier_low_sec($id_auteur, $cle, $dir);
1397 1397
 }
1398 1398
 
1399 1399
 /**
@@ -1418,11 +1418,11 @@  discard block
 block discarded – undo
1418 1418
  *     Retourne $texte, sinon $sinon.
1419 1419
  **/
1420 1420
 function sinon($texte, $sinon = '') {
1421
-	if ($texte or (!is_array($texte) and strlen($texte))) {
1422
-		return $texte;
1423
-	} else {
1424
-		return $sinon;
1425
-	}
1421
+    if ($texte or (!is_array($texte) and strlen($texte))) {
1422
+        return $texte;
1423
+    } else {
1424
+        return $sinon;
1425
+    }
1426 1426
 }
1427 1427
 
1428 1428
 /**
@@ -1446,7 +1446,7 @@  discard block
 block discarded – undo
1446 1446
  * @return mixed
1447 1447
  **/
1448 1448
 function choixsivide($a, $vide, $pasvide) {
1449
-	return $a ? $pasvide : $vide;
1449
+    return $a ? $pasvide : $vide;
1450 1450
 }
1451 1451
 
1452 1452
 /**
@@ -1470,7 +1470,7 @@  discard block
 block discarded – undo
1470 1470
  * @return mixed
1471 1471
  **/
1472 1472
 function choixsiegal($a1, $a2, $v, $f) {
1473
-	return ($a1 == $a2) ? $v : $f;
1473
+    return ($a1 == $a2) ? $v : $f;
1474 1474
 }
1475 1475
 
1476 1476
 //
@@ -1489,13 +1489,13 @@  discard block
 block discarded – undo
1489 1489
  * @return string
1490 1490
  **/
1491 1491
 function filtrer_ical($texte) {
1492
-	#include_spip('inc/charsets');
1493
-	$texte = html2unicode($texte);
1494
-	$texte = unicode2charset(charset2unicode($texte, $GLOBALS['meta']['charset'], 1), 'utf-8');
1495
-	$texte = preg_replace("/\n/", " ", $texte);
1496
-	$texte = preg_replace("/,/", "\,", $texte);
1492
+    #include_spip('inc/charsets');
1493
+    $texte = html2unicode($texte);
1494
+    $texte = unicode2charset(charset2unicode($texte, $GLOBALS['meta']['charset'], 1), 'utf-8');
1495
+    $texte = preg_replace("/\n/", " ", $texte);
1496
+    $texte = preg_replace("/,/", "\,", $texte);
1497 1497
 
1498
-	return $texte;
1498
+    return $texte;
1499 1499
 }
1500 1500
 
1501 1501
 
@@ -1520,53 +1520,53 @@  discard block
 block discarded – undo
1520 1520
  * @return string
1521 1521
  **/
1522 1522
 function post_autobr($texte, $delim = "\n_ ") {
1523
-	if (!function_exists('echappe_html')) {
1524
-		include_spip('inc/texte_mini');
1525
-	}
1526
-	$texte = str_replace("\r\n", "\r", $texte);
1527
-	$texte = str_replace("\r", "\n", $texte);
1528
-
1529
-	if (preg_match(",\n+$,", $texte, $fin)) {
1530
-		$texte = substr($texte, 0, -strlen($fin = $fin[0]));
1531
-	} else {
1532
-		$fin = '';
1533
-	}
1534
-
1535
-	$texte = echappe_html($texte, '', true);
1536
-
1537
-	// echapper les modeles
1538
-	if (strpos($texte, "<") !== false) {
1539
-		include_spip('inc/lien');
1540
-		if (defined('_PREG_MODELE')) {
1541
-			$preg_modeles = "@" . _PREG_MODELE . "@imsS";
1542
-			$texte = echappe_html($texte, '', true, $preg_modeles);
1543
-		}
1544
-	}
1545
-
1546
-	$debut = '';
1547
-	$suite = $texte;
1548
-	while ($t = strpos('-' . $suite, "\n", 1)) {
1549
-		$debut .= substr($suite, 0, $t - 1);
1550
-		$suite = substr($suite, $t);
1551
-		$car = substr($suite, 0, 1);
1552
-		if (($car <> '-') and ($car <> '_') and ($car <> "\n") and ($car <> "|") and ($car <> "}")
1553
-			and !preg_match(',^\s*(\n|</?(quote|div|dl|dt|dd)|$),S', ($suite))
1554
-			and !preg_match(',</?(quote|div|dl|dt|dd)> *$,iS', $debut)
1555
-		) {
1556
-			$debut .= $delim;
1557
-		} else {
1558
-			$debut .= "\n";
1559
-		}
1560
-		if (preg_match(",^\n+,", $suite, $regs)) {
1561
-			$debut .= $regs[0];
1562
-			$suite = substr($suite, strlen($regs[0]));
1563
-		}
1564
-	}
1565
-	$texte = $debut . $suite;
1566
-
1567
-	$texte = echappe_retour($texte);
1568
-
1569
-	return $texte . $fin;
1523
+    if (!function_exists('echappe_html')) {
1524
+        include_spip('inc/texte_mini');
1525
+    }
1526
+    $texte = str_replace("\r\n", "\r", $texte);
1527
+    $texte = str_replace("\r", "\n", $texte);
1528
+
1529
+    if (preg_match(",\n+$,", $texte, $fin)) {
1530
+        $texte = substr($texte, 0, -strlen($fin = $fin[0]));
1531
+    } else {
1532
+        $fin = '';
1533
+    }
1534
+
1535
+    $texte = echappe_html($texte, '', true);
1536
+
1537
+    // echapper les modeles
1538
+    if (strpos($texte, "<") !== false) {
1539
+        include_spip('inc/lien');
1540
+        if (defined('_PREG_MODELE')) {
1541
+            $preg_modeles = "@" . _PREG_MODELE . "@imsS";
1542
+            $texte = echappe_html($texte, '', true, $preg_modeles);
1543
+        }
1544
+    }
1545
+
1546
+    $debut = '';
1547
+    $suite = $texte;
1548
+    while ($t = strpos('-' . $suite, "\n", 1)) {
1549
+        $debut .= substr($suite, 0, $t - 1);
1550
+        $suite = substr($suite, $t);
1551
+        $car = substr($suite, 0, 1);
1552
+        if (($car <> '-') and ($car <> '_') and ($car <> "\n") and ($car <> "|") and ($car <> "}")
1553
+            and !preg_match(',^\s*(\n|</?(quote|div|dl|dt|dd)|$),S', ($suite))
1554
+            and !preg_match(',</?(quote|div|dl|dt|dd)> *$,iS', $debut)
1555
+        ) {
1556
+            $debut .= $delim;
1557
+        } else {
1558
+            $debut .= "\n";
1559
+        }
1560
+        if (preg_match(",^\n+,", $suite, $regs)) {
1561
+            $debut .= $regs[0];
1562
+            $suite = substr($suite, strlen($regs[0]));
1563
+        }
1564
+    }
1565
+    $texte = $debut . $suite;
1566
+
1567
+    $texte = echappe_retour($texte);
1568
+
1569
+    return $texte . $fin;
1570 1570
 }
1571 1571
 
1572 1572
 
@@ -1607,46 +1607,46 @@  discard block
 block discarded – undo
1607 1607
  * @return string
1608 1608
  **/
1609 1609
 function extraire_idiome($letexte, $lang = null, $options = array()) {
1610
-	static $traduire = false;
1611
-	if ($letexte
1612
-		and preg_match_all(_EXTRAIRE_IDIOME, $letexte, $regs, PREG_SET_ORDER)
1613
-	) {
1614
-		if (!$traduire) {
1615
-			$traduire = charger_fonction('traduire', 'inc');
1616
-			include_spip('inc/lang');
1617
-		}
1618
-		if (!$lang) {
1619
-			$lang = $GLOBALS['spip_lang'];
1620
-		}
1621
-		// Compatibilité avec le prototype de fonction précédente qui utilisait un boolean
1622
-		if (is_bool($options)) {
1623
-			$options = array('echappe_span' => $options);
1624
-		}
1625
-		if (!isset($options['echappe_span'])) {
1626
-			$options = array_merge($options, array('echappe_span' => false));
1627
-		}
1628
-
1629
-		foreach ($regs as $reg) {
1630
-			$cle = ($reg[1] ? $reg[1] . ':' : '') . $reg[2];
1631
-			$desc = $traduire($cle, $lang, true);
1632
-			$l = $desc->langue;
1633
-			// si pas de traduction, on laissera l'écriture de l'idiome entier dans le texte.
1634
-			if (strlen($desc->texte)) {
1635
-				$trad = code_echappement($desc->texte, 'idiome', false);
1636
-				if ($l !== $lang) {
1637
-					$trad = str_replace("'", '"', inserer_attribut($trad, 'lang', $l));
1638
-				}
1639
-				if (lang_dir($l) !== lang_dir($lang)) {
1640
-					$trad = str_replace("'", '"', inserer_attribut($trad, 'dir', lang_dir($l)));
1641
-				}
1642
-				if (!$options['echappe_span']) {
1643
-					$trad = echappe_retour($trad, 'idiome');
1644
-				}
1645
-				$letexte = str_replace($reg[0], $trad, $letexte);
1646
-			}
1647
-		}
1648
-	}
1649
-	return $letexte;
1610
+    static $traduire = false;
1611
+    if ($letexte
1612
+        and preg_match_all(_EXTRAIRE_IDIOME, $letexte, $regs, PREG_SET_ORDER)
1613
+    ) {
1614
+        if (!$traduire) {
1615
+            $traduire = charger_fonction('traduire', 'inc');
1616
+            include_spip('inc/lang');
1617
+        }
1618
+        if (!$lang) {
1619
+            $lang = $GLOBALS['spip_lang'];
1620
+        }
1621
+        // Compatibilité avec le prototype de fonction précédente qui utilisait un boolean
1622
+        if (is_bool($options)) {
1623
+            $options = array('echappe_span' => $options);
1624
+        }
1625
+        if (!isset($options['echappe_span'])) {
1626
+            $options = array_merge($options, array('echappe_span' => false));
1627
+        }
1628
+
1629
+        foreach ($regs as $reg) {
1630
+            $cle = ($reg[1] ? $reg[1] . ':' : '') . $reg[2];
1631
+            $desc = $traduire($cle, $lang, true);
1632
+            $l = $desc->langue;
1633
+            // si pas de traduction, on laissera l'écriture de l'idiome entier dans le texte.
1634
+            if (strlen($desc->texte)) {
1635
+                $trad = code_echappement($desc->texte, 'idiome', false);
1636
+                if ($l !== $lang) {
1637
+                    $trad = str_replace("'", '"', inserer_attribut($trad, 'lang', $l));
1638
+                }
1639
+                if (lang_dir($l) !== lang_dir($lang)) {
1640
+                    $trad = str_replace("'", '"', inserer_attribut($trad, 'dir', lang_dir($l)));
1641
+                }
1642
+                if (!$options['echappe_span']) {
1643
+                    $trad = echappe_retour($trad, 'idiome');
1644
+                }
1645
+                $letexte = str_replace($reg[0], $trad, $letexte);
1646
+            }
1647
+        }
1648
+    }
1649
+    return $letexte;
1650 1650
 }
1651 1651
 
1652 1652
 /**
@@ -1698,67 +1698,67 @@  discard block
 block discarded – undo
1698 1698
  **/
1699 1699
 function extraire_multi($letexte, $lang = null, $options = array()) {
1700 1700
 
1701
-	if ($letexte
1702
-		and preg_match_all(_EXTRAIRE_MULTI, $letexte, $regs, PREG_SET_ORDER)
1703
-	) {
1704
-		if (!$lang) {
1705
-			$lang = $GLOBALS['spip_lang'];
1706
-		}
1707
-
1708
-		// Compatibilité avec le prototype de fonction précédente qui utilisait un boolean
1709
-		if (is_bool($options)) {
1710
-			$options = array('echappe_span' => $options, 'lang_defaut' => _LANGUE_PAR_DEFAUT);
1711
-		}
1712
-		if (!isset($options['echappe_span'])) {
1713
-			$options = array_merge($options, array('echappe_span' => false));
1714
-		}
1715
-		if (!isset($options['lang_defaut'])) {
1716
-			$options = array_merge($options, array('lang_defaut' => _LANGUE_PAR_DEFAUT));
1717
-		}
1718
-
1719
-		include_spip('inc/lang');
1720
-		foreach ($regs as $reg) {
1721
-			// chercher la version de la langue courante
1722
-			$trads = extraire_trads($reg[1]);
1723
-			if ($l = approcher_langue($trads, $lang)) {
1724
-				$trad = $trads[$l];
1725
-			} else {
1726
-				if ($options['lang_defaut'] == 'aucune') {
1727
-					$trad = '';
1728
-				} else {
1729
-					// langue absente, prendre le fr ou une langue précisée (meme comportement que inc/traduire.php)
1730
-					// ou la premiere dispo
1731
-					// mais typographier le texte selon les regles de celle-ci
1732
-					// Attention aux blocs multi sur plusieurs lignes
1733
-					if (!$l = approcher_langue($trads, $options['lang_defaut'])) {
1734
-						$l = key($trads);
1735
-					}
1736
-					$trad = $trads[$l];
1737
-					$typographie = charger_fonction(lang_typo($l), 'typographie');
1738
-					$trad = $typographie($trad);
1739
-					// Tester si on echappe en span ou en div
1740
-					// il ne faut pas echapper en div si propre produit un seul paragraphe
1741
-					include_spip('inc/texte');
1742
-					$trad_propre = preg_replace(",(^<p[^>]*>|</p>$),Uims", "", propre($trad));
1743
-					$mode = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $trad_propre) ? 'div' : 'span';
1744
-					if ($mode === 'div') {
1745
-						$trad = rtrim($trad) . "\n\n";
1746
-					}
1747
-					$trad = code_echappement($trad, 'multi', false, $mode);
1748
-					$trad = str_replace("'", '"', inserer_attribut($trad, 'lang', $l));
1749
-					if (lang_dir($l) !== lang_dir($lang)) {
1750
-						$trad = str_replace("'", '"', inserer_attribut($trad, 'dir', lang_dir($l)));
1751
-					}
1752
-					if (!$options['echappe_span']) {
1753
-						$trad = echappe_retour($trad, 'multi');
1754
-					}
1755
-				}
1756
-			}
1757
-			$letexte = str_replace($reg[0], $trad, $letexte);
1758
-		}
1759
-	}
1760
-
1761
-	return $letexte;
1701
+    if ($letexte
1702
+        and preg_match_all(_EXTRAIRE_MULTI, $letexte, $regs, PREG_SET_ORDER)
1703
+    ) {
1704
+        if (!$lang) {
1705
+            $lang = $GLOBALS['spip_lang'];
1706
+        }
1707
+
1708
+        // Compatibilité avec le prototype de fonction précédente qui utilisait un boolean
1709
+        if (is_bool($options)) {
1710
+            $options = array('echappe_span' => $options, 'lang_defaut' => _LANGUE_PAR_DEFAUT);
1711
+        }
1712
+        if (!isset($options['echappe_span'])) {
1713
+            $options = array_merge($options, array('echappe_span' => false));
1714
+        }
1715
+        if (!isset($options['lang_defaut'])) {
1716
+            $options = array_merge($options, array('lang_defaut' => _LANGUE_PAR_DEFAUT));
1717
+        }
1718
+
1719
+        include_spip('inc/lang');
1720
+        foreach ($regs as $reg) {
1721
+            // chercher la version de la langue courante
1722
+            $trads = extraire_trads($reg[1]);
1723
+            if ($l = approcher_langue($trads, $lang)) {
1724
+                $trad = $trads[$l];
1725
+            } else {
1726
+                if ($options['lang_defaut'] == 'aucune') {
1727
+                    $trad = '';
1728
+                } else {
1729
+                    // langue absente, prendre le fr ou une langue précisée (meme comportement que inc/traduire.php)
1730
+                    // ou la premiere dispo
1731
+                    // mais typographier le texte selon les regles de celle-ci
1732
+                    // Attention aux blocs multi sur plusieurs lignes
1733
+                    if (!$l = approcher_langue($trads, $options['lang_defaut'])) {
1734
+                        $l = key($trads);
1735
+                    }
1736
+                    $trad = $trads[$l];
1737
+                    $typographie = charger_fonction(lang_typo($l), 'typographie');
1738
+                    $trad = $typographie($trad);
1739
+                    // Tester si on echappe en span ou en div
1740
+                    // il ne faut pas echapper en div si propre produit un seul paragraphe
1741
+                    include_spip('inc/texte');
1742
+                    $trad_propre = preg_replace(",(^<p[^>]*>|</p>$),Uims", "", propre($trad));
1743
+                    $mode = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $trad_propre) ? 'div' : 'span';
1744
+                    if ($mode === 'div') {
1745
+                        $trad = rtrim($trad) . "\n\n";
1746
+                    }
1747
+                    $trad = code_echappement($trad, 'multi', false, $mode);
1748
+                    $trad = str_replace("'", '"', inserer_attribut($trad, 'lang', $l));
1749
+                    if (lang_dir($l) !== lang_dir($lang)) {
1750
+                        $trad = str_replace("'", '"', inserer_attribut($trad, 'dir', lang_dir($l)));
1751
+                    }
1752
+                    if (!$options['echappe_span']) {
1753
+                        $trad = echappe_retour($trad, 'multi');
1754
+                    }
1755
+                }
1756
+            }
1757
+            $letexte = str_replace($reg[0], $trad, $letexte);
1758
+        }
1759
+    }
1760
+
1761
+    return $letexte;
1762 1762
 }
1763 1763
 
1764 1764
 /**
@@ -1774,20 +1774,20 @@  discard block
 block discarded – undo
1774 1774
  *     Peut retourner un code de langue vide, lorsqu'un texte par défaut est indiqué.
1775 1775
  **/
1776 1776
 function extraire_trads($bloc) {
1777
-	$lang = '';
1777
+    $lang = '';
1778 1778
 // ce reg fait planter l'analyse multi s'il y a de l'{italique} dans le champ
1779 1779
 //	while (preg_match("/^(.*?)[{\[]([a-z_]+)[}\]]/siS", $bloc, $regs)) {
1780
-	while (preg_match("/^(.*?)[\[]([a-z_]+)[\]]/siS", $bloc, $regs)) {
1781
-		$texte = trim($regs[1]);
1782
-		if ($texte or $lang) {
1783
-			$trads[$lang] = $texte;
1784
-		}
1785
-		$bloc = substr($bloc, strlen($regs[0]));
1786
-		$lang = $regs[2];
1787
-	}
1788
-	$trads[$lang] = $bloc;
1780
+    while (preg_match("/^(.*?)[\[]([a-z_]+)[\]]/siS", $bloc, $regs)) {
1781
+        $texte = trim($regs[1]);
1782
+        if ($texte or $lang) {
1783
+            $trads[$lang] = $texte;
1784
+        }
1785
+        $bloc = substr($bloc, strlen($regs[0]));
1786
+        $lang = $regs[2];
1787
+    }
1788
+    $trads[$lang] = $bloc;
1789 1789
 
1790
-	return $trads;
1790
+    return $trads;
1791 1791
 }
1792 1792
 
1793 1793
 
@@ -1798,7 +1798,7 @@  discard block
 block discarded – undo
1798 1798
  * @return string L'initiale en majuscule
1799 1799
  */
1800 1800
 function filtre_initiale($nom) {
1801
-	return spip_substr(trim(strtoupper(extraire_multi($nom))), 0, 1);
1801
+    return spip_substr(trim(strtoupper(extraire_multi($nom))), 0, 1);
1802 1802
 }
1803 1803
 
1804 1804
 
@@ -1843,33 +1843,33 @@  discard block
 block discarded – undo
1843 1843
  *      - null (interne) : si on empile
1844 1844
  **/
1845 1845
 function unique($donnee, $famille = '', $cpt = false) {
1846
-	static $mem = array();
1847
-	// permettre de vider la pile et de la restaurer
1848
-	// pour le calcul de introduction...
1849
-	if ($famille == '_spip_raz_') {
1850
-		$tmp = $mem;
1851
-		$mem = array();
1852
-
1853
-		return $tmp;
1854
-	} elseif ($famille == '_spip_set_') {
1855
-		$mem = $donnee;
1856
-
1857
-		return;
1858
-	}
1859
-	// eviter une notice
1860
-	if (!isset($mem[$famille])) {
1861
-		$mem[$famille] = array();
1862
-	}
1863
-	if ($cpt) {
1864
-		return count($mem[$famille]);
1865
-	}
1866
-	// eviter une notice
1867
-	if (!isset($mem[$famille][$donnee])) {
1868
-		$mem[$famille][$donnee] = 0;
1869
-	}
1870
-	if (!($mem[$famille][$donnee]++)) {
1871
-		return $donnee;
1872
-	}
1846
+    static $mem = array();
1847
+    // permettre de vider la pile et de la restaurer
1848
+    // pour le calcul de introduction...
1849
+    if ($famille == '_spip_raz_') {
1850
+        $tmp = $mem;
1851
+        $mem = array();
1852
+
1853
+        return $tmp;
1854
+    } elseif ($famille == '_spip_set_') {
1855
+        $mem = $donnee;
1856
+
1857
+        return;
1858
+    }
1859
+    // eviter une notice
1860
+    if (!isset($mem[$famille])) {
1861
+        $mem[$famille] = array();
1862
+    }
1863
+    if ($cpt) {
1864
+        return count($mem[$famille]);
1865
+    }
1866
+    // eviter une notice
1867
+    if (!isset($mem[$famille][$donnee])) {
1868
+        $mem[$famille][$donnee] = 0;
1869
+    }
1870
+    if (!($mem[$famille][$donnee]++)) {
1871
+        return $donnee;
1872
+    }
1873 1873
 }
1874 1874
 
1875 1875
 
@@ -1899,16 +1899,16 @@  discard block
 block discarded – undo
1899 1899
  *     Une des valeurs en fonction du compteur.
1900 1900
  **/
1901 1901
 function alterner($i, ...$args) {
1902
-	// recuperer les arguments (attention fonctions un peu space)
1903
-	$num = count($args);
1902
+    // recuperer les arguments (attention fonctions un peu space)
1903
+    $num = count($args);
1904 1904
 
1905
-	if ($num === 1 && is_array($args[0])) {
1906
-		$args = $args[0];
1907
-		$num = count($args);
1908
-	}
1905
+    if ($num === 1 && is_array($args[0])) {
1906
+        $args = $args[0];
1907
+        $num = count($args);
1908
+    }
1909 1909
 
1910
-	// renvoyer le i-ieme argument, modulo le nombre d'arguments
1911
-	return $args[(intval($i) - 1) % $num];
1910
+    // renvoyer le i-ieme argument, modulo le nombre d'arguments
1911
+    return $args[(intval($i) - 1) % $num];
1912 1912
 }
1913 1913
 
1914 1914
 
@@ -1933,46 +1933,46 @@  discard block
 block discarded – undo
1933 1933
  *     - Tableau complet (si 2e argument)
1934 1934
  **/
1935 1935
 function extraire_attribut($balise, $attribut, $complet = false) {
1936
-	if (is_array($balise)) {
1937
-		array_walk(
1938
-			$balise,
1939
-			function(&$a, $key, $t){
1940
-				$a = extraire_attribut($a, $t);
1941
-			},
1942
-			$attribut
1943
-		);
1944
-
1945
-		return $balise;
1946
-	}
1947
-	if (preg_match(
1948
-		',(^.*?<(?:(?>\s*)(?>[\w:.-]+)(?>(?:=(?:"[^"]*"|\'[^\']*\'|[^\'"]\S*))?))*?)(\s+'
1949
-		. $attribut
1950
-		. '(?:=\s*("[^"]*"|\'[^\']*\'|[^\'"]\S*))?)()((?:[\s/][^>]*)?>.*),isS',
1951
-
1952
-		$balise, $r)) {
1953
-		if (isset($r[3][0]) and ($r[3][0] == '"' || $r[3][0] == "'")) {
1954
-			$r[4] = substr($r[3], 1, -1);
1955
-			$r[3] = $r[3][0];
1956
-		} elseif ($r[3] !== '') {
1957
-			$r[4] = $r[3];
1958
-			$r[3] = '';
1959
-		} else {
1960
-			$r[4] = trim($r[2]);
1961
-		}
1962
-		$att = $r[4];
1963
-		if (strpos($att, "&#") !== false) {
1964
-			$att = str_replace(array("&#039;", "&#39;", "&#034;", "&#34;"), array("'", "'", '"', '"'), $att);
1965
-		}
1966
-		$att = filtrer_entites($att);
1967
-	} else {
1968
-		$att = null;
1969
-	}
1970
-
1971
-	if ($complet) {
1972
-		return array($att, $r);
1973
-	} else {
1974
-		return $att;
1975
-	}
1936
+    if (is_array($balise)) {
1937
+        array_walk(
1938
+            $balise,
1939
+            function(&$a, $key, $t){
1940
+                $a = extraire_attribut($a, $t);
1941
+            },
1942
+            $attribut
1943
+        );
1944
+
1945
+        return $balise;
1946
+    }
1947
+    if (preg_match(
1948
+        ',(^.*?<(?:(?>\s*)(?>[\w:.-]+)(?>(?:=(?:"[^"]*"|\'[^\']*\'|[^\'"]\S*))?))*?)(\s+'
1949
+        . $attribut
1950
+        . '(?:=\s*("[^"]*"|\'[^\']*\'|[^\'"]\S*))?)()((?:[\s/][^>]*)?>.*),isS',
1951
+
1952
+        $balise, $r)) {
1953
+        if (isset($r[3][0]) and ($r[3][0] == '"' || $r[3][0] == "'")) {
1954
+            $r[4] = substr($r[3], 1, -1);
1955
+            $r[3] = $r[3][0];
1956
+        } elseif ($r[3] !== '') {
1957
+            $r[4] = $r[3];
1958
+            $r[3] = '';
1959
+        } else {
1960
+            $r[4] = trim($r[2]);
1961
+        }
1962
+        $att = $r[4];
1963
+        if (strpos($att, "&#") !== false) {
1964
+            $att = str_replace(array("&#039;", "&#39;", "&#034;", "&#34;"), array("'", "'", '"', '"'), $att);
1965
+        }
1966
+        $att = filtrer_entites($att);
1967
+    } else {
1968
+        $att = null;
1969
+    }
1970
+
1971
+    if ($complet) {
1972
+        return array($att, $r);
1973
+    } else {
1974
+        return $att;
1975
+    }
1976 1976
 }
1977 1977
 
1978 1978
 /**
@@ -2004,37 +2004,37 @@  discard block
 block discarded – undo
2004 2004
  *     Code html modifié
2005 2005
  **/
2006 2006
 function inserer_attribut($balise, $attribut, $val, $proteger = true, $vider = false) {
2007
-	// preparer l'attribut
2008
-	// supprimer les &nbsp; etc mais pas les balises html
2009
-	// qui ont un sens dans un attribut value d'un input
2010
-	if ($proteger) {
2011
-		$val = attribut_html($val, false);
2012
-	}
2013
-
2014
-	// echapper les ' pour eviter tout bug
2015
-	$val = str_replace("'", "&#039;", $val);
2016
-	if ($vider and strlen($val) == 0) {
2017
-		$insert = '';
2018
-	} else {
2019
-		$insert = " $attribut='$val'";
2020
-	}
2021
-
2022
-	list($old, $r) = extraire_attribut($balise, $attribut, true);
2023
-
2024
-	if ($old !== null) {
2025
-		// Remplacer l'ancien attribut du meme nom
2026
-		$balise = $r[1] . $insert . $r[5];
2027
-	} else {
2028
-		// preferer une balise " />" (comme <img />)
2029
-		if (preg_match(',/>,', $balise)) {
2030
-			$balise = preg_replace(",\s?/>,S", $insert . " />", $balise, 1);
2031
-		} // sinon une balise <a ...> ... </a>
2032
-		else {
2033
-			$balise = preg_replace(",\s?>,S", $insert . ">", $balise, 1);
2034
-		}
2035
-	}
2036
-
2037
-	return $balise;
2007
+    // preparer l'attribut
2008
+    // supprimer les &nbsp; etc mais pas les balises html
2009
+    // qui ont un sens dans un attribut value d'un input
2010
+    if ($proteger) {
2011
+        $val = attribut_html($val, false);
2012
+    }
2013
+
2014
+    // echapper les ' pour eviter tout bug
2015
+    $val = str_replace("'", "&#039;", $val);
2016
+    if ($vider and strlen($val) == 0) {
2017
+        $insert = '';
2018
+    } else {
2019
+        $insert = " $attribut='$val'";
2020
+    }
2021
+
2022
+    list($old, $r) = extraire_attribut($balise, $attribut, true);
2023
+
2024
+    if ($old !== null) {
2025
+        // Remplacer l'ancien attribut du meme nom
2026
+        $balise = $r[1] . $insert . $r[5];
2027
+    } else {
2028
+        // preferer une balise " />" (comme <img />)
2029
+        if (preg_match(',/>,', $balise)) {
2030
+            $balise = preg_replace(",\s?/>,S", $insert . " />", $balise, 1);
2031
+        } // sinon une balise <a ...> ... </a>
2032
+        else {
2033
+            $balise = preg_replace(",\s?>,S", $insert . ">", $balise, 1);
2034
+        }
2035
+    }
2036
+
2037
+    return $balise;
2038 2038
 }
2039 2039
 
2040 2040
 /**
@@ -2052,7 +2052,7 @@  discard block
 block discarded – undo
2052 2052
  * @return string Code HTML sans l'attribut
2053 2053
  **/
2054 2054
 function vider_attribut($balise, $attribut) {
2055
-	return inserer_attribut($balise, $attribut, '', false, true);
2055
+    return inserer_attribut($balise, $attribut, '', false, true);
2056 2056
 }
2057 2057
 
2058 2058
 /**
@@ -2064,50 +2064,50 @@  discard block
 block discarded – undo
2064 2064
  * @return string
2065 2065
  */
2066 2066
 function modifier_class($balise, $class, $operation='ajouter') {
2067
-	if (is_string($class)) {
2068
-		$class = explode(' ', trim($class));
2069
-	}
2070
-	$class = array_filter($class);
2071
-
2072
-	// si la ou les classes ont des caracteres invalides on ne fait rien
2073
-	if (preg_match(",[^\w-],", implode('', $class))) {
2074
-		return $balise;
2075
-	}
2076
-
2077
-	if ($class) {
2078
-		$class = array_unique($class);
2079
-		$class_courante = extraire_attribut($balise, 'class');
2080
-
2081
-		$class_new = $class_courante;
2082
-		foreach ($class as $c) {
2083
-			if ($c) {
2084
-				$is_class_presente = false;
2085
-				if (strpos($class_courante, $c) !== false
2086
-					and preg_match("/(^|\s)".preg_quote($c)."($|\s)/", $class_courante)) {
2087
-					$is_class_presente = true;
2088
-				}
2089
-				if (in_array($operation, ['ajouter', 'commuter'])
2090
-					and !$is_class_presente) {
2091
-					$class_new = rtrim($class_new) . " " . $c;
2092
-				}
2093
-				elseif (in_array($operation, ['supprimer', 'commuter'])
2094
-					and $is_class_presente) {
2095
-					$class_new = trim(preg_replace("/(^|\s)".preg_quote($c)."($|\s)/", "\\1", $class_new));
2096
-				}
2097
-			}
2098
-		}
2099
-
2100
-		if ($class_new !== $class_courante) {
2101
-			if (strlen($class_new)) {
2102
-				$balise = inserer_attribut($balise, 'class', $class_new);
2103
-			}
2104
-			elseif ($class_courante) {
2105
-				$balise = vider_attribut($balise, 'class');
2106
-			}
2107
-		}
2108
-	}
2109
-
2110
-	return $balise;
2067
+    if (is_string($class)) {
2068
+        $class = explode(' ', trim($class));
2069
+    }
2070
+    $class = array_filter($class);
2071
+
2072
+    // si la ou les classes ont des caracteres invalides on ne fait rien
2073
+    if (preg_match(",[^\w-],", implode('', $class))) {
2074
+        return $balise;
2075
+    }
2076
+
2077
+    if ($class) {
2078
+        $class = array_unique($class);
2079
+        $class_courante = extraire_attribut($balise, 'class');
2080
+
2081
+        $class_new = $class_courante;
2082
+        foreach ($class as $c) {
2083
+            if ($c) {
2084
+                $is_class_presente = false;
2085
+                if (strpos($class_courante, $c) !== false
2086
+                    and preg_match("/(^|\s)".preg_quote($c)."($|\s)/", $class_courante)) {
2087
+                    $is_class_presente = true;
2088
+                }
2089
+                if (in_array($operation, ['ajouter', 'commuter'])
2090
+                    and !$is_class_presente) {
2091
+                    $class_new = rtrim($class_new) . " " . $c;
2092
+                }
2093
+                elseif (in_array($operation, ['supprimer', 'commuter'])
2094
+                    and $is_class_presente) {
2095
+                    $class_new = trim(preg_replace("/(^|\s)".preg_quote($c)."($|\s)/", "\\1", $class_new));
2096
+                }
2097
+            }
2098
+        }
2099
+
2100
+        if ($class_new !== $class_courante) {
2101
+            if (strlen($class_new)) {
2102
+                $balise = inserer_attribut($balise, 'class', $class_new);
2103
+            }
2104
+            elseif ($class_courante) {
2105
+                $balise = vider_attribut($balise, 'class');
2106
+            }
2107
+        }
2108
+    }
2109
+
2110
+    return $balise;
2111 2111
 }
2112 2112
 
2113 2113
 /**
@@ -2117,7 +2117,7 @@  discard block
 block discarded – undo
2117 2117
  * @return string
2118 2118
  */
2119 2119
 function ajouter_class($balise, $class){
2120
-	return modifier_class($balise, $class, 'ajouter');
2120
+    return modifier_class($balise, $class, 'ajouter');
2121 2121
 }
2122 2122
 
2123 2123
 /**
@@ -2127,7 +2127,7 @@  discard block
 block discarded – undo
2127 2127
  * @return string
2128 2128
  */
2129 2129
 function supprimer_class($balise, $class){
2130
-	return modifier_class($balise, $class, 'supprimer');
2130
+    return modifier_class($balise, $class, 'supprimer');
2131 2131
 }
2132 2132
 
2133 2133
 /**
@@ -2138,7 +2138,7 @@  discard block
 block discarded – undo
2138 2138
  * @return string
2139 2139
  */
2140 2140
 function commuter_class($balise, $class){
2141
-	return modifier_class($balise, $class, 'commuter');
2141
+    return modifier_class($balise, $class, 'commuter');
2142 2142
 }
2143 2143
 
2144 2144
 /**
@@ -2149,9 +2149,9 @@  discard block
 block discarded – undo
2149 2149
  * @return string
2150 2150
  */
2151 2151
 function tester_config($id, $mode = '') {
2152
-	include_spip('action/inscrire_auteur');
2152
+    include_spip('action/inscrire_auteur');
2153 2153
 
2154
-	return tester_statut_inscription($mode, $id);
2154
+    return tester_statut_inscription($mode, $id);
2155 2155
 }
2156 2156
 
2157 2157
 //
@@ -2176,7 +2176,7 @@  discard block
 block discarded – undo
2176 2176
  * @return int $a+$b
2177 2177
  **/
2178 2178
 function plus($a, $b) {
2179
-	return $a + $b;
2179
+    return $a + $b;
2180 2180
 }
2181 2181
 function strplus($a, $b) {return strize('plus', $a, $b);}
2182 2182
 /**
@@ -2195,7 +2195,7 @@  discard block
 block discarded – undo
2195 2195
  * @return int $a-$b
2196 2196
  **/
2197 2197
 function moins($a, $b) {
2198
-	return $a - $b;
2198
+    return $a - $b;
2199 2199
 }
2200 2200
 function strmoins($a, $b) {return strize('moins', $a, $b);}
2201 2201
 
@@ -2216,7 +2216,7 @@  discard block
 block discarded – undo
2216 2216
  * @return int $a*$b
2217 2217
  **/
2218 2218
 function mult($a, $b) {
2219
-	return $a * $b;
2219
+    return $a * $b;
2220 2220
 }
2221 2221
 function strmult($a, $b) {return strize('mult', $a, $b);}
2222 2222
 
@@ -2237,7 +2237,7 @@  discard block
 block discarded – undo
2237 2237
  * @return int $a/$b (ou 0 si $b est nul)
2238 2238
  **/
2239 2239
 function div($a, $b) {
2240
-	return $b ? $a / $b : 0;
2240
+    return $b ? $a / $b : 0;
2241 2241
 }
2242 2242
 function strdiv($a, $b) {return strize('div', $a, $b);}
2243 2243
 
@@ -2259,7 +2259,7 @@  discard block
 block discarded – undo
2259 2259
  * @return int ($nb % $mod) + $add
2260 2260
  **/
2261 2261
 function modulo($nb, $mod, $add = 0) {
2262
-	return ($mod ? $nb % $mod : 0) + $add;
2262
+    return ($mod ? $nb % $mod : 0) + $add;
2263 2263
 }
2264 2264
 
2265 2265
 
@@ -2274,24 +2274,24 @@  discard block
 block discarded – undo
2274 2274
  *      - true sinon
2275 2275
  **/
2276 2276
 function nom_acceptable($nom) {
2277
-	if (!is_string($nom)) {
2278
-		return false;
2279
-	}
2280
-	if (!defined('_TAGS_NOM_AUTEUR')) {
2281
-		define('_TAGS_NOM_AUTEUR', '');
2282
-	}
2283
-	$tags_acceptes = array_unique(explode(',', 'multi,' . _TAGS_NOM_AUTEUR));
2284
-	foreach ($tags_acceptes as $tag) {
2285
-		if (strlen($tag)) {
2286
-			$remp1[] = '<' . trim($tag) . '>';
2287
-			$remp1[] = '</' . trim($tag) . '>';
2288
-			$remp2[] = '\x60' . trim($tag) . '\x61';
2289
-			$remp2[] = '\x60/' . trim($tag) . '\x61';
2290
-		}
2291
-	}
2292
-	$v_nom = str_replace($remp2, $remp1, supprimer_tags(str_replace($remp1, $remp2, $nom)));
2277
+    if (!is_string($nom)) {
2278
+        return false;
2279
+    }
2280
+    if (!defined('_TAGS_NOM_AUTEUR')) {
2281
+        define('_TAGS_NOM_AUTEUR', '');
2282
+    }
2283
+    $tags_acceptes = array_unique(explode(',', 'multi,' . _TAGS_NOM_AUTEUR));
2284
+    foreach ($tags_acceptes as $tag) {
2285
+        if (strlen($tag)) {
2286
+            $remp1[] = '<' . trim($tag) . '>';
2287
+            $remp1[] = '</' . trim($tag) . '>';
2288
+            $remp2[] = '\x60' . trim($tag) . '\x61';
2289
+            $remp2[] = '\x60/' . trim($tag) . '\x61';
2290
+        }
2291
+    }
2292
+    $v_nom = str_replace($remp2, $remp1, supprimer_tags(str_replace($remp1, $remp2, $nom)));
2293 2293
 
2294
-	return str_replace('&lt;', '<', $v_nom) == $nom;
2294
+    return str_replace('&lt;', '<', $v_nom) == $nom;
2295 2295
 }
2296 2296
 
2297 2297
 
@@ -2307,14 +2307,14 @@  discard block
 block discarded – undo
2307 2307
  *      - renvoie un tableau si l'entree est un tableau
2308 2308
  **/
2309 2309
 function email_valide($adresses) {
2310
-	if (is_array($adresses)) {
2311
-		$adresses = array_map('email_valide', $adresses);
2312
-		$adresses = array_filter($adresses);
2313
-		return $adresses;
2314
-	}
2310
+    if (is_array($adresses)) {
2311
+        $adresses = array_map('email_valide', $adresses);
2312
+        $adresses = array_filter($adresses);
2313
+        return $adresses;
2314
+    }
2315 2315
 
2316
-	$email_valide = charger_fonction('email_valide', 'inc');
2317
-	return $email_valide($adresses);
2316
+    $email_valide = charger_fonction('email_valide', 'inc');
2317
+    return $email_valide($adresses);
2318 2318
 }
2319 2319
 
2320 2320
 /**
@@ -2328,20 +2328,20 @@  discard block
 block discarded – undo
2328 2328
  * @return string Texte
2329 2329
  **/
2330 2330
 function afficher_enclosures($tags) {
2331
-	$s = array();
2332
-	foreach (extraire_balises($tags, 'a') as $tag) {
2333
-		if (extraire_attribut($tag, 'rel') == 'enclosure'
2334
-			and $t = extraire_attribut($tag, 'href')
2335
-		) {
2336
-			$s[] = preg_replace(',>[^<]+</a>,S',
2337
-				'>'
2338
-				. http_img_pack('attachment-16.png', $t,
2339
-					'title="' . attribut_html($t) . '"')
2340
-				. '</a>', $tag);
2341
-		}
2342
-	}
2331
+    $s = array();
2332
+    foreach (extraire_balises($tags, 'a') as $tag) {
2333
+        if (extraire_attribut($tag, 'rel') == 'enclosure'
2334
+            and $t = extraire_attribut($tag, 'href')
2335
+        ) {
2336
+            $s[] = preg_replace(',>[^<]+</a>,S',
2337
+                '>'
2338
+                . http_img_pack('attachment-16.png', $t,
2339
+                    'title="' . attribut_html($t) . '"')
2340
+                . '</a>', $tag);
2341
+        }
2342
+    }
2343 2343
 
2344
-	return join('&nbsp;', $s);
2344
+    return join('&nbsp;', $s);
2345 2345
 }
2346 2346
 
2347 2347
 /**
@@ -2356,15 +2356,15 @@  discard block
 block discarded – undo
2356 2356
  * @return string Liens trouvés
2357 2357
  **/
2358 2358
 function afficher_tags($tags, $rels = 'tag,directory') {
2359
-	$s = array();
2360
-	foreach (extraire_balises($tags, 'a') as $tag) {
2361
-		$rel = extraire_attribut($tag, 'rel');
2362
-		if (strstr(",$rels,", ",$rel,")) {
2363
-			$s[] = $tag;
2364
-		}
2365
-	}
2359
+    $s = array();
2360
+    foreach (extraire_balises($tags, 'a') as $tag) {
2361
+        $rel = extraire_attribut($tag, 'rel');
2362
+        if (strstr(",$rels,", ",$rel,")) {
2363
+            $s[] = $tag;
2364
+        }
2365
+    }
2366 2366
 
2367
-	return join(', ', $s);
2367
+    return join(', ', $s);
2368 2368
 }
2369 2369
 
2370 2370
 
@@ -2386,21 +2386,21 @@  discard block
 block discarded – undo
2386 2386
  * @return string Tag HTML `<a>` avec microformat.
2387 2387
  **/
2388 2388
 function enclosure2microformat($e) {
2389
-	if (!$url = filtrer_entites(extraire_attribut($e, 'url'))) {
2390
-		$url = filtrer_entites(extraire_attribut($e, 'href'));
2391
-	}
2392
-	$type = extraire_attribut($e, 'type');
2393
-	if (!$length = extraire_attribut($e, 'length')) {
2394
-		# <media:content : longeur dans fileSize. On tente.
2395
-		$length = extraire_attribut($e, 'fileSize');
2396
-	}
2397
-	$fichier = basename($url);
2389
+    if (!$url = filtrer_entites(extraire_attribut($e, 'url'))) {
2390
+        $url = filtrer_entites(extraire_attribut($e, 'href'));
2391
+    }
2392
+    $type = extraire_attribut($e, 'type');
2393
+    if (!$length = extraire_attribut($e, 'length')) {
2394
+        # <media:content : longeur dans fileSize. On tente.
2395
+        $length = extraire_attribut($e, 'fileSize');
2396
+    }
2397
+    $fichier = basename($url);
2398 2398
 
2399
-	return '<a rel="enclosure"'
2400
-	. ($url ? ' href="' . spip_htmlspecialchars($url) . '"' : '')
2401
-	. ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '')
2402
-	. ($length ? ' title="' . spip_htmlspecialchars($length) . '"' : '')
2403
-	. '>' . $fichier . '</a>';
2399
+    return '<a rel="enclosure"'
2400
+    . ($url ? ' href="' . spip_htmlspecialchars($url) . '"' : '')
2401
+    . ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '')
2402
+    . ($length ? ' title="' . spip_htmlspecialchars($length) . '"' : '')
2403
+    . '>' . $fichier . '</a>';
2404 2404
 }
2405 2405
 
2406 2406
 /**
@@ -2418,24 +2418,24 @@  discard block
 block discarded – undo
2418 2418
  * @return string Tags RSS `<enclosure>`.
2419 2419
  **/
2420 2420
 function microformat2enclosure($tags) {
2421
-	$enclosures = array();
2422
-	foreach (extraire_balises($tags, 'a') as $e) {
2423
-		if (extraire_attribut($e, 'rel') == 'enclosure') {
2424
-			$url = filtrer_entites(extraire_attribut($e, 'href'));
2425
-			$type = extraire_attribut($e, 'type');
2426
-			if (!$length = intval(extraire_attribut($e, 'title'))) {
2427
-				$length = intval(extraire_attribut($e, 'length'));
2428
-			} # vieux data
2429
-			$fichier = basename($url);
2430
-			$enclosures[] = '<enclosure'
2431
-				. ($url ? ' url="' . spip_htmlspecialchars($url) . '"' : '')
2432
-				. ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '')
2433
-				. ($length ? ' length="' . $length . '"' : '')
2434
-				. ' />';
2435
-		}
2436
-	}
2421
+    $enclosures = array();
2422
+    foreach (extraire_balises($tags, 'a') as $e) {
2423
+        if (extraire_attribut($e, 'rel') == 'enclosure') {
2424
+            $url = filtrer_entites(extraire_attribut($e, 'href'));
2425
+            $type = extraire_attribut($e, 'type');
2426
+            if (!$length = intval(extraire_attribut($e, 'title'))) {
2427
+                $length = intval(extraire_attribut($e, 'length'));
2428
+            } # vieux data
2429
+            $fichier = basename($url);
2430
+            $enclosures[] = '<enclosure'
2431
+                . ($url ? ' url="' . spip_htmlspecialchars($url) . '"' : '')
2432
+                . ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '')
2433
+                . ($length ? ' length="' . $length . '"' : '')
2434
+                . ' />';
2435
+        }
2436
+    }
2437 2437
 
2438
-	return join("\n", $enclosures);
2438
+    return join("\n", $enclosures);
2439 2439
 }
2440 2440
 
2441 2441
 
@@ -2451,16 +2451,16 @@  discard block
 block discarded – undo
2451 2451
  * @return string Tags RSS Atom `<dc:subject>`.
2452 2452
  **/
2453 2453
 function tags2dcsubject($tags) {
2454
-	$subjects = '';
2455
-	foreach (extraire_balises($tags, 'a') as $e) {
2456
-		if (extraire_attribut($e, 'rel') == 'tag') {
2457
-			$subjects .= '<dc:subject>'
2458
-				. texte_backend(textebrut($e))
2459
-				. '</dc:subject>' . "\n";
2460
-		}
2461
-	}
2454
+    $subjects = '';
2455
+    foreach (extraire_balises($tags, 'a') as $e) {
2456
+        if (extraire_attribut($e, 'rel') == 'tag') {
2457
+            $subjects .= '<dc:subject>'
2458
+                . texte_backend(textebrut($e))
2459
+                . '</dc:subject>' . "\n";
2460
+        }
2461
+    }
2462 2462
 
2463
-	return $subjects;
2463
+    return $subjects;
2464 2464
 }
2465 2465
 
2466 2466
 /**
@@ -2489,23 +2489,23 @@  discard block
 block discarded – undo
2489 2489
  *     - Tableau de résultats, si tableau en entrée.
2490 2490
  **/
2491 2491
 function extraire_balise($texte, $tag = 'a') {
2492
-	if (is_array($texte)) {
2493
-		array_walk(
2494
-			$texte,
2495
-			function(&$a, $key, $t){
2496
-				$a = extraire_balise($a, $t);
2497
-			},
2498
-			$tag
2499
-		);
2492
+    if (is_array($texte)) {
2493
+        array_walk(
2494
+            $texte,
2495
+            function(&$a, $key, $t){
2496
+                $a = extraire_balise($a, $t);
2497
+            },
2498
+            $tag
2499
+        );
2500 2500
 
2501
-		return $texte;
2502
-	}
2501
+        return $texte;
2502
+    }
2503 2503
 
2504
-	if (preg_match(
2505
-		",<$tag\b[^>]*(/>|>.*</$tag\b[^>]*>|>),UimsS",
2506
-		$texte, $regs)) {
2507
-		return $regs[0];
2508
-	}
2504
+    if (preg_match(
2505
+        ",<$tag\b[^>]*(/>|>.*</$tag\b[^>]*>|>),UimsS",
2506
+        $texte, $regs)) {
2507
+        return $regs[0];
2508
+    }
2509 2509
 }
2510 2510
 
2511 2511
 /**
@@ -2533,25 +2533,25 @@  discard block
 block discarded – undo
2533 2533
  *     - Tableau de résultats, si tableau en entrée.
2534 2534
  **/
2535 2535
 function extraire_balises($texte, $tag = 'a') {
2536
-	if (is_array($texte)) {
2537
-		array_walk(
2538
-			$texte,
2539
-			function(&$a, $key, $t){
2540
-				$a = extraire_balises($a, $t);
2541
-			},
2542
-			$tag
2543
-		);
2536
+    if (is_array($texte)) {
2537
+        array_walk(
2538
+            $texte,
2539
+            function(&$a, $key, $t){
2540
+                $a = extraire_balises($a, $t);
2541
+            },
2542
+            $tag
2543
+        );
2544 2544
 
2545
-		return $texte;
2546
-	}
2545
+        return $texte;
2546
+    }
2547 2547
 
2548
-	if (preg_match_all(
2549
-		",<${tag}\b[^>]*(/>|>.*</${tag}\b[^>]*>|>),UimsS",
2550
-		$texte, $regs, PREG_PATTERN_ORDER)) {
2551
-		return $regs[0];
2552
-	} else {
2553
-		return array();
2554
-	}
2548
+    if (preg_match_all(
2549
+        ",<${tag}\b[^>]*(/>|>.*</${tag}\b[^>]*>|>),UimsS",
2550
+        $texte, $regs, PREG_PATTERN_ORDER)) {
2551
+        return $regs[0];
2552
+    } else {
2553
+        return array();
2554
+    }
2555 2555
 }
2556 2556
 
2557 2557
 /**
@@ -2580,11 +2580,11 @@  discard block
 block discarded – undo
2580 2580
  *     - `$def` si on n'a pas transmis de tableau
2581 2581
  **/
2582 2582
 function in_any($val, $vals, $def = '') {
2583
-	if (!is_array($vals) and $v = unserialize($vals)) {
2584
-		$vals = $v;
2585
-	}
2583
+    if (!is_array($vals) and $v = unserialize($vals)) {
2584
+        $vals = $v;
2585
+    }
2586 2586
 
2587
-	return (!is_array($vals) ? $def : (in_array($val, $vals) ? ' ' : ''));
2587
+    return (!is_array($vals) ? $def : (in_array($val, $vals) ? ' ' : ''));
2588 2588
 }
2589 2589
 
2590 2590
 
@@ -2605,12 +2605,12 @@  discard block
 block discarded – undo
2605 2605
  *     Résultat du calcul
2606 2606
  **/
2607 2607
 function valeur_numerique($expr) {
2608
-	$a = 0;
2609
-	if (preg_match(',^[0-9]+(\s*[+*-]\s*[0-9]+)*$,S', trim($expr))) {
2610
-		eval("\$a = $expr;");
2611
-	}
2608
+    $a = 0;
2609
+    if (preg_match(',^[0-9]+(\s*[+*-]\s*[0-9]+)*$,S', trim($expr))) {
2610
+        eval("\$a = $expr;");
2611
+    }
2612 2612
 
2613
-	return intval($a);
2613
+    return intval($a);
2614 2614
 }
2615 2615
 
2616 2616
 /**
@@ -2629,7 +2629,7 @@  discard block
 block discarded – undo
2629 2629
  *      Retourne `$a*$b/$c`
2630 2630
  **/
2631 2631
 function regledetrois($a, $b, $c) {
2632
-	return round($a * $b / $c);
2632
+    return round($a * $b / $c);
2633 2633
 }
2634 2634
 
2635 2635
 
@@ -2653,76 +2653,76 @@  discard block
 block discarded – undo
2653 2653
  **/
2654 2654
 function form_hidden($action) {
2655 2655
 
2656
-	$contexte = array();
2657
-	include_spip('inc/urls');
2658
-	if ($p = urls_decoder_url($action, '')
2659
-		and reset($p)
2660
-	) {
2661
-		$fond = array_shift($p);
2662
-		if ($fond != '404') {
2663
-			$contexte = array_shift($p);
2664
-			$contexte['page'] = $fond;
2665
-			$action = preg_replace('/([?]' . preg_quote($fond) . '[^&=]*[0-9]+)(&|$)/', '?&', $action);
2666
-		}
2667
-	}
2668
-	// defaire ce qu'a injecte urls_decoder_url : a revoir en modifiant la signature de urls_decoder_url
2669
-	if (defined('_DEFINIR_CONTEXTE_TYPE') and _DEFINIR_CONTEXTE_TYPE) {
2670
-		unset($contexte['type']);
2671
-	}
2672
-	if (!defined('_DEFINIR_CONTEXTE_TYPE_PAGE') or _DEFINIR_CONTEXTE_TYPE_PAGE) {
2673
-		unset($contexte['type-page']);
2674
-	}
2675
-
2676
-	// on va remplir un tableau de valeurs en prenant bien soin de ne pas
2677
-	// ecraser les elements de la forme mots[]=1&mots[]=2
2678
-	$values = array();
2679
-
2680
-	// d'abord avec celles de l'url
2681
-	if (false !== ($p = strpos($action, '?'))) {
2682
-		foreach (preg_split('/&(amp;)?/S', substr($action, $p + 1)) as $c) {
2683
-			$c = explode('=', $c, 2);
2684
-			$var = array_shift($c);
2685
-			$val = array_shift($c);
2686
-			if ($var) {
2687
-				$val = rawurldecode($val);
2688
-				$var = rawurldecode($var); // decoder les [] eventuels
2689
-				if (preg_match(',\[\]$,S', $var)) {
2690
-					$values[] = array($var, $val);
2691
-				} else {
2692
-					if (!isset($values[$var])) {
2693
-						$values[$var] = array($var, $val);
2694
-					}
2695
-				}
2696
-			}
2697
-		}
2698
-	}
2699
-
2700
-	// ensuite avec celles du contexte, sans doublonner !
2701
-	foreach ($contexte as $var => $val) {
2702
-		if (preg_match(',\[\]$,S', $var)) {
2703
-			$values[] = array($var, $val);
2704
-		} else {
2705
-			if (!isset($values[$var])) {
2706
-				$values[$var] = array($var, $val);
2707
-			}
2708
-		}
2709
-	}
2710
-
2711
-	// puis on rassemble le tout
2712
-	$hidden = array();
2713
-	foreach ($values as $value) {
2714
-		list($var, $val) = $value;
2715
-		$hidden[] = '<input name="'
2716
-			. entites_html($var)
2717
-			. '"'
2718
-			. (is_null($val)
2719
-				? ''
2720
-				: ' value="' . entites_html($val) . '"'
2721
-			)
2722
-			. ' type="hidden"' . "\n/>";
2723
-	}
2724
-
2725
-	return join("", $hidden);
2656
+    $contexte = array();
2657
+    include_spip('inc/urls');
2658
+    if ($p = urls_decoder_url($action, '')
2659
+        and reset($p)
2660
+    ) {
2661
+        $fond = array_shift($p);
2662
+        if ($fond != '404') {
2663
+            $contexte = array_shift($p);
2664
+            $contexte['page'] = $fond;
2665
+            $action = preg_replace('/([?]' . preg_quote($fond) . '[^&=]*[0-9]+)(&|$)/', '?&', $action);
2666
+        }
2667
+    }
2668
+    // defaire ce qu'a injecte urls_decoder_url : a revoir en modifiant la signature de urls_decoder_url
2669
+    if (defined('_DEFINIR_CONTEXTE_TYPE') and _DEFINIR_CONTEXTE_TYPE) {
2670
+        unset($contexte['type']);
2671
+    }
2672
+    if (!defined('_DEFINIR_CONTEXTE_TYPE_PAGE') or _DEFINIR_CONTEXTE_TYPE_PAGE) {
2673
+        unset($contexte['type-page']);
2674
+    }
2675
+
2676
+    // on va remplir un tableau de valeurs en prenant bien soin de ne pas
2677
+    // ecraser les elements de la forme mots[]=1&mots[]=2
2678
+    $values = array();
2679
+
2680
+    // d'abord avec celles de l'url
2681
+    if (false !== ($p = strpos($action, '?'))) {
2682
+        foreach (preg_split('/&(amp;)?/S', substr($action, $p + 1)) as $c) {
2683
+            $c = explode('=', $c, 2);
2684
+            $var = array_shift($c);
2685
+            $val = array_shift($c);
2686
+            if ($var) {
2687
+                $val = rawurldecode($val);
2688
+                $var = rawurldecode($var); // decoder les [] eventuels
2689
+                if (preg_match(',\[\]$,S', $var)) {
2690
+                    $values[] = array($var, $val);
2691
+                } else {
2692
+                    if (!isset($values[$var])) {
2693
+                        $values[$var] = array($var, $val);
2694
+                    }
2695
+                }
2696
+            }
2697
+        }
2698
+    }
2699
+
2700
+    // ensuite avec celles du contexte, sans doublonner !
2701
+    foreach ($contexte as $var => $val) {
2702
+        if (preg_match(',\[\]$,S', $var)) {
2703
+            $values[] = array($var, $val);
2704
+        } else {
2705
+            if (!isset($values[$var])) {
2706
+                $values[$var] = array($var, $val);
2707
+            }
2708
+        }
2709
+    }
2710
+
2711
+    // puis on rassemble le tout
2712
+    $hidden = array();
2713
+    foreach ($values as $value) {
2714
+        list($var, $val) = $value;
2715
+        $hidden[] = '<input name="'
2716
+            . entites_html($var)
2717
+            . '"'
2718
+            . (is_null($val)
2719
+                ? ''
2720
+                : ' value="' . entites_html($val) . '"'
2721
+            )
2722
+            . ' type="hidden"' . "\n/>";
2723
+    }
2724
+
2725
+    return join("", $hidden);
2726 2726
 }
2727 2727
 
2728 2728
 
@@ -2744,7 +2744,7 @@  discard block
 block discarded – undo
2744 2744
  *    - la première valeur du tableau sinon.
2745 2745
  **/
2746 2746
 function filtre_reset($array) {
2747
-	return !is_array($array) ? null : reset($array);
2747
+    return !is_array($array) ? null : reset($array);
2748 2748
 }
2749 2749
 
2750 2750
 /**
@@ -2765,7 +2765,7 @@  discard block
 block discarded – undo
2765 2765
  *    - la dernière valeur du tableau sinon.
2766 2766
  **/
2767 2767
 function filtre_end($array) {
2768
-	return !is_array($array) ? null : end($array);
2768
+    return !is_array($array) ? null : end($array);
2769 2769
 }
2770 2770
 
2771 2771
 /**
@@ -2785,11 +2785,11 @@  discard block
 block discarded – undo
2785 2785
  *
2786 2786
  **/
2787 2787
 function filtre_push($array, $val) {
2788
-	if (!is_array($array) or !array_push($array, $val)) {
2789
-		return '';
2790
-	}
2788
+    if (!is_array($array) or !array_push($array, $val)) {
2789
+        return '';
2790
+    }
2791 2791
 
2792
-	return $array;
2792
+    return $array;
2793 2793
 }
2794 2794
 
2795 2795
 /**
@@ -2808,7 +2808,7 @@  discard block
 block discarded – undo
2808 2808
  *     - `true` si la valeur existe dans le tableau, `false` sinon.
2809 2809
  **/
2810 2810
 function filtre_find($array, $val) {
2811
-	return (is_array($array) and in_array($val, $array));
2811
+    return (is_array($array) and in_array($val, $array));
2812 2812
 }
2813 2813
 
2814 2814
 
@@ -2825,15 +2825,15 @@  discard block
 block discarded – undo
2825 2825
  *     Contenu avec urls en absolus
2826 2826
  **/
2827 2827
 function urls_absolues_css($contenu, $source) {
2828
-	$path = suivre_lien(url_absolue($source), './');
2828
+    $path = suivre_lien(url_absolue($source), './');
2829 2829
 
2830
-	return preg_replace_callback(
2831
-		",url\s*\(\s*['\"]?([^'\"/#\s][^:]*)['\"]?\s*\),Uims",
2832
-		function($x) use ($path) {
2833
-			return "url('" . suivre_lien($path, $x[1]) . "')";
2834
-		},
2835
-		$contenu
2836
-	);
2830
+    return preg_replace_callback(
2831
+        ",url\s*\(\s*['\"]?([^'\"/#\s][^:]*)['\"]?\s*\),Uims",
2832
+        function($x) use ($path) {
2833
+            return "url('" . suivre_lien($path, $x[1]) . "')";
2834
+        },
2835
+        $contenu
2836
+    );
2837 2837
 }
2838 2838
 
2839 2839
 
@@ -2862,118 +2862,118 @@  discard block
 block discarded – undo
2862 2862
  *     Chemin du fichier CSS inversé
2863 2863
  **/
2864 2864
 function direction_css($css, $voulue = '') {
2865
-	if (!preg_match(',(_rtl)?\.css$,i', $css, $r)) {
2866
-		return $css;
2867
-	}
2868
-	include_spip("inc/lang");
2869
-	// si on a precise le sens voulu en argument, le prendre en compte
2870
-	if ($voulue = strtolower($voulue)) {
2871
-		if ($voulue != 'rtl' and $voulue != 'ltr') {
2872
-			$voulue = lang_dir($voulue);
2873
-		}
2874
-	} else {
2875
-		$voulue = lang_dir();
2876
-	}
2877
-
2878
-	$r = count($r) > 1;
2879
-	$right = $r ? 'left' : 'right'; // 'right' de la css lue en entree
2880
-	$dir = $r ? 'rtl' : 'ltr';
2881
-	$ndir = $r ? 'ltr' : 'rtl';
2882
-
2883
-	if ($voulue == $dir) {
2884
-		return $css;
2885
-	}
2886
-
2887
-	if (
2888
-		// url absolue
2889
-		preg_match(",^https?:,i", $css)
2890
-		// ou qui contient un ?
2891
-		or (($p = strpos($css, '?')) !== false)
2892
-	) {
2893
-		$distant = true;
2894
-		$cssf = parse_url($css);
2895
-		$cssf = $cssf['path'] . ($cssf['query'] ? "?" . $cssf['query'] : "");
2896
-		$cssf = preg_replace(',[?:&=],', "_", $cssf);
2897
-	} else {
2898
-		$distant = false;
2899
-		$cssf = $css;
2900
-		// 1. regarder d'abord si un fichier avec la bonne direction n'est pas aussi
2901
-		//propose (rien a faire dans ce cas)
2902
-		$f = preg_replace(',(_rtl)?\.css$,i', '_' . $ndir . '.css', $css);
2903
-		if (@file_exists($f)) {
2904
-			return $f;
2905
-		}
2906
-	}
2907
-
2908
-	// 2.
2909
-	$dir_var = sous_repertoire(_DIR_VAR, 'cache-css');
2910
-	$f = $dir_var
2911
-		. preg_replace(',.*/(.*?)(_rtl)?\.css,', '\1', $cssf)
2912
-		. '.' . substr(md5($cssf), 0, 4) . '_' . $ndir . '.css';
2913
-
2914
-	// la css peut etre distante (url absolue !)
2915
-	if ($distant) {
2916
-		include_spip('inc/distant');
2917
-		$res = recuperer_url($css);
2918
-		if (!$res or !$contenu = $res['page']) {
2919
-			return $css;
2920
-		}
2921
-	} else {
2922
-		if ((@filemtime($f) > @filemtime($css))
2923
-			and (_VAR_MODE != 'recalcul')
2924
-		) {
2925
-			return $f;
2926
-		}
2927
-		if (!lire_fichier($css, $contenu)) {
2928
-			return $css;
2929
-		}
2930
-	}
2931
-
2932
-
2933
-	// Inverser la direction gauche-droite en utilisant CSSTidy qui gere aussi les shorthands
2934
-	include_spip("lib/csstidy/class.csstidy");
2935
-	$parser = new csstidy();
2936
-	$parser->set_cfg('optimise_shorthands', 0);
2937
-	$parser->set_cfg('reverse_left_and_right', true);
2938
-	$parser->parse($contenu);
2939
-
2940
-	$contenu = $parser->print->plain();
2941
-
2942
-
2943
-	// reperer les @import auxquels il faut propager le direction_css
2944
-	preg_match_all(",\@import\s*url\s*\(\s*['\"]?([^'\"/][^:]*)['\"]?\s*\),Uims", $contenu, $regs);
2945
-	$src = array();
2946
-	$src_direction_css = array();
2947
-	$src_faux_abs = array();
2948
-	$d = dirname($css);
2949
-	foreach ($regs[1] as $k => $import_css) {
2950
-		$css_direction = direction_css("$d/$import_css", $voulue);
2951
-		// si la css_direction est dans le meme path que la css d'origine, on tronque le path, elle sera passee en absolue
2952
-		if (substr($css_direction, 0, strlen($d) + 1) == "$d/") {
2953
-			$css_direction = substr($css_direction, strlen($d) + 1);
2954
-		} // si la css_direction commence par $dir_var on la fait passer pour une absolue
2955
-		elseif (substr($css_direction, 0, strlen($dir_var)) == $dir_var) {
2956
-			$css_direction = substr($css_direction, strlen($dir_var));
2957
-			$src_faux_abs["/@@@@@@/" . $css_direction] = $css_direction;
2958
-			$css_direction = "/@@@@@@/" . $css_direction;
2959
-		}
2960
-		$src[] = $regs[0][$k];
2961
-		$src_direction_css[] = str_replace($import_css, $css_direction, $regs[0][$k]);
2962
-	}
2963
-	$contenu = str_replace($src, $src_direction_css, $contenu);
2964
-
2965
-	$contenu = urls_absolues_css($contenu, $css);
2966
-
2967
-	// virer les fausses url absolues que l'on a mis dans les import
2968
-	if (count($src_faux_abs)) {
2969
-		$contenu = str_replace(array_keys($src_faux_abs), $src_faux_abs, $contenu);
2970
-	}
2971
-
2972
-	if (!ecrire_fichier($f, $contenu)) {
2973
-		return $css;
2974
-	}
2975
-
2976
-	return $f;
2865
+    if (!preg_match(',(_rtl)?\.css$,i', $css, $r)) {
2866
+        return $css;
2867
+    }
2868
+    include_spip("inc/lang");
2869
+    // si on a precise le sens voulu en argument, le prendre en compte
2870
+    if ($voulue = strtolower($voulue)) {
2871
+        if ($voulue != 'rtl' and $voulue != 'ltr') {
2872
+            $voulue = lang_dir($voulue);
2873
+        }
2874
+    } else {
2875
+        $voulue = lang_dir();
2876
+    }
2877
+
2878
+    $r = count($r) > 1;
2879
+    $right = $r ? 'left' : 'right'; // 'right' de la css lue en entree
2880
+    $dir = $r ? 'rtl' : 'ltr';
2881
+    $ndir = $r ? 'ltr' : 'rtl';
2882
+
2883
+    if ($voulue == $dir) {
2884
+        return $css;
2885
+    }
2886
+
2887
+    if (
2888
+        // url absolue
2889
+        preg_match(",^https?:,i", $css)
2890
+        // ou qui contient un ?
2891
+        or (($p = strpos($css, '?')) !== false)
2892
+    ) {
2893
+        $distant = true;
2894
+        $cssf = parse_url($css);
2895
+        $cssf = $cssf['path'] . ($cssf['query'] ? "?" . $cssf['query'] : "");
2896
+        $cssf = preg_replace(',[?:&=],', "_", $cssf);
2897
+    } else {
2898
+        $distant = false;
2899
+        $cssf = $css;
2900
+        // 1. regarder d'abord si un fichier avec la bonne direction n'est pas aussi
2901
+        //propose (rien a faire dans ce cas)
2902
+        $f = preg_replace(',(_rtl)?\.css$,i', '_' . $ndir . '.css', $css);
2903
+        if (@file_exists($f)) {
2904
+            return $f;
2905
+        }
2906
+    }
2907
+
2908
+    // 2.
2909
+    $dir_var = sous_repertoire(_DIR_VAR, 'cache-css');
2910
+    $f = $dir_var
2911
+        . preg_replace(',.*/(.*?)(_rtl)?\.css,', '\1', $cssf)
2912
+        . '.' . substr(md5($cssf), 0, 4) . '_' . $ndir . '.css';
2913
+
2914
+    // la css peut etre distante (url absolue !)
2915
+    if ($distant) {
2916
+        include_spip('inc/distant');
2917
+        $res = recuperer_url($css);
2918
+        if (!$res or !$contenu = $res['page']) {
2919
+            return $css;
2920
+        }
2921
+    } else {
2922
+        if ((@filemtime($f) > @filemtime($css))
2923
+            and (_VAR_MODE != 'recalcul')
2924
+        ) {
2925
+            return $f;
2926
+        }
2927
+        if (!lire_fichier($css, $contenu)) {
2928
+            return $css;
2929
+        }
2930
+    }
2931
+
2932
+
2933
+    // Inverser la direction gauche-droite en utilisant CSSTidy qui gere aussi les shorthands
2934
+    include_spip("lib/csstidy/class.csstidy");
2935
+    $parser = new csstidy();
2936
+    $parser->set_cfg('optimise_shorthands', 0);
2937
+    $parser->set_cfg('reverse_left_and_right', true);
2938
+    $parser->parse($contenu);
2939
+
2940
+    $contenu = $parser->print->plain();
2941
+
2942
+
2943
+    // reperer les @import auxquels il faut propager le direction_css
2944
+    preg_match_all(",\@import\s*url\s*\(\s*['\"]?([^'\"/][^:]*)['\"]?\s*\),Uims", $contenu, $regs);
2945
+    $src = array();
2946
+    $src_direction_css = array();
2947
+    $src_faux_abs = array();
2948
+    $d = dirname($css);
2949
+    foreach ($regs[1] as $k => $import_css) {
2950
+        $css_direction = direction_css("$d/$import_css", $voulue);
2951
+        // si la css_direction est dans le meme path que la css d'origine, on tronque le path, elle sera passee en absolue
2952
+        if (substr($css_direction, 0, strlen($d) + 1) == "$d/") {
2953
+            $css_direction = substr($css_direction, strlen($d) + 1);
2954
+        } // si la css_direction commence par $dir_var on la fait passer pour une absolue
2955
+        elseif (substr($css_direction, 0, strlen($dir_var)) == $dir_var) {
2956
+            $css_direction = substr($css_direction, strlen($dir_var));
2957
+            $src_faux_abs["/@@@@@@/" . $css_direction] = $css_direction;
2958
+            $css_direction = "/@@@@@@/" . $css_direction;
2959
+        }
2960
+        $src[] = $regs[0][$k];
2961
+        $src_direction_css[] = str_replace($import_css, $css_direction, $regs[0][$k]);
2962
+    }
2963
+    $contenu = str_replace($src, $src_direction_css, $contenu);
2964
+
2965
+    $contenu = urls_absolues_css($contenu, $css);
2966
+
2967
+    // virer les fausses url absolues que l'on a mis dans les import
2968
+    if (count($src_faux_abs)) {
2969
+        $contenu = str_replace(array_keys($src_faux_abs), $src_faux_abs, $contenu);
2970
+    }
2971
+
2972
+    if (!ecrire_fichier($f, $contenu)) {
2973
+        return $css;
2974
+    }
2975
+
2976
+    return $f;
2977 2977
 }
2978 2978
 
2979 2979
 
@@ -2996,45 +2996,45 @@  discard block
 block discarded – undo
2996 2996
  *     - Chemin ou URL du fichier CSS source sinon.
2997 2997
  **/
2998 2998
 function url_absolue_css($css) {
2999
-	if (!preg_match(',\.css$,i', $css, $r)) {
3000
-		return $css;
3001
-	}
2999
+    if (!preg_match(',\.css$,i', $css, $r)) {
3000
+        return $css;
3001
+    }
3002 3002
 
3003
-	$url_absolue_css = url_absolue($css);
3003
+    $url_absolue_css = url_absolue($css);
3004 3004
 
3005
-	$f = basename($css, '.css');
3006
-	$f = sous_repertoire(_DIR_VAR, 'cache-css')
3007
-		. preg_replace(",(.*?)(_rtl|_ltr)?$,", "\\1-urlabs-" . substr(md5("$css-urlabs"), 0, 4) . "\\2", $f)
3008
-		. '.css';
3005
+    $f = basename($css, '.css');
3006
+    $f = sous_repertoire(_DIR_VAR, 'cache-css')
3007
+        . preg_replace(",(.*?)(_rtl|_ltr)?$,", "\\1-urlabs-" . substr(md5("$css-urlabs"), 0, 4) . "\\2", $f)
3008
+        . '.css';
3009 3009
 
3010
-	if ((@filemtime($f) > @filemtime($css)) and (_VAR_MODE != 'recalcul')) {
3011
-		return $f;
3012
-	}
3010
+    if ((@filemtime($f) > @filemtime($css)) and (_VAR_MODE != 'recalcul')) {
3011
+        return $f;
3012
+    }
3013 3013
 
3014
-	if ($url_absolue_css == $css) {
3015
-		if (strncmp($GLOBALS['meta']['adresse_site'], $css, $l = strlen($GLOBALS['meta']['adresse_site'])) != 0
3016
-			or !lire_fichier(_DIR_RACINE . substr($css, $l), $contenu)
3017
-		) {
3018
-			include_spip('inc/distant');
3019
-			$contenu = recuperer_url($css);
3020
-			$contenu = $contenu['page'] ?? '';
3021
-			if (!$contenu) {
3022
-				return $css;
3023
-			}
3024
-		}
3025
-	} elseif (!lire_fichier($css, $contenu)) {
3026
-		return $css;
3027
-	}
3014
+    if ($url_absolue_css == $css) {
3015
+        if (strncmp($GLOBALS['meta']['adresse_site'], $css, $l = strlen($GLOBALS['meta']['adresse_site'])) != 0
3016
+            or !lire_fichier(_DIR_RACINE . substr($css, $l), $contenu)
3017
+        ) {
3018
+            include_spip('inc/distant');
3019
+            $contenu = recuperer_url($css);
3020
+            $contenu = $contenu['page'] ?? '';
3021
+            if (!$contenu) {
3022
+                return $css;
3023
+            }
3024
+        }
3025
+    } elseif (!lire_fichier($css, $contenu)) {
3026
+        return $css;
3027
+    }
3028 3028
 
3029
-	// passer les url relatives a la css d'origine en url absolues
3030
-	$contenu = urls_absolues_css($contenu, $css);
3029
+    // passer les url relatives a la css d'origine en url absolues
3030
+    $contenu = urls_absolues_css($contenu, $css);
3031 3031
 
3032
-	// ecrire la css
3033
-	if (!ecrire_fichier($f, $contenu)) {
3034
-		return $css;
3035
-	}
3032
+    // ecrire la css
3033
+    if (!ecrire_fichier($f, $contenu)) {
3034
+        return $css;
3035
+    }
3036 3036
 
3037
-	return $f;
3037
+    return $f;
3038 3038
 }
3039 3039
 
3040 3040
 
@@ -3068,24 +3068,24 @@  discard block
 block discarded – undo
3068 3068
  *     Valeur trouvée ou valeur par défaut.
3069 3069
  **/
3070 3070
 function table_valeur($table, $cle, $defaut = '', $conserver_null = false) {
3071
-	foreach (explode('/', $cle) as $k) {
3071
+    foreach (explode('/', $cle) as $k) {
3072 3072
 
3073
-		$table = is_string($table) ? @unserialize($table) : $table;
3073
+        $table = is_string($table) ? @unserialize($table) : $table;
3074 3074
 
3075
-		if (is_object($table)) {
3076
-			$table = (($k !== "") and isset($table->$k)) ? $table->$k : $defaut;
3077
-		} elseif (is_array($table)) {
3078
-			if ($conserver_null) {
3079
-				$table = array_key_exists($k, $table) ? $table[$k] : $defaut;
3080
-			} else {
3081
-				$table = isset($table[$k]) ? $table[$k] : $defaut;
3082
-			}
3083
-		} else {
3084
-			$table = $defaut;
3085
-		}
3086
-	}
3075
+        if (is_object($table)) {
3076
+            $table = (($k !== "") and isset($table->$k)) ? $table->$k : $defaut;
3077
+        } elseif (is_array($table)) {
3078
+            if ($conserver_null) {
3079
+                $table = array_key_exists($k, $table) ? $table[$k] : $defaut;
3080
+            } else {
3081
+                $table = isset($table[$k]) ? $table[$k] : $defaut;
3082
+            }
3083
+        } else {
3084
+            $table = $defaut;
3085
+        }
3086
+    }
3087 3087
 
3088
-	return $table;
3088
+    return $table;
3089 3089
 }
3090 3090
 
3091 3091
 /**
@@ -3118,22 +3118,22 @@  discard block
 block discarded – undo
3118 3118
  *     - string : expression trouvée.
3119 3119
  **/
3120 3120
 function filtre_match_dist($texte, $expression, $modif = "UimsS", $capte = 0) {
3121
-	if (intval($modif) and $capte == 0) {
3122
-		$capte = $modif;
3123
-		$modif = "UimsS";
3124
-	}
3125
-	$expression = str_replace("\/", "/", $expression);
3126
-	$expression = str_replace("/", "\/", $expression);
3121
+    if (intval($modif) and $capte == 0) {
3122
+        $capte = $modif;
3123
+        $modif = "UimsS";
3124
+    }
3125
+    $expression = str_replace("\/", "/", $expression);
3126
+    $expression = str_replace("/", "\/", $expression);
3127 3127
 
3128
-	if (preg_match('/' . $expression . '/' . $modif, $texte, $r)) {
3129
-		if (isset($r[$capte])) {
3130
-			return $r[$capte];
3131
-		} else {
3132
-			return true;
3133
-		}
3134
-	}
3128
+    if (preg_match('/' . $expression . '/' . $modif, $texte, $r)) {
3129
+        if (isset($r[$capte])) {
3130
+            return $r[$capte];
3131
+        } else {
3132
+            return true;
3133
+        }
3134
+    }
3135 3135
 
3136
-	return false;
3136
+    return false;
3137 3137
 }
3138 3138
 
3139 3139
 
@@ -3160,10 +3160,10 @@  discard block
 block discarded – undo
3160 3160
  *     Texte
3161 3161
  **/
3162 3162
 function replace($texte, $expression, $replace = '', $modif = "UimsS") {
3163
-	$expression = str_replace("\/", "/", $expression);
3164
-	$expression = str_replace("/", "\/", $expression);
3163
+    $expression = str_replace("\/", "/", $expression);
3164
+    $expression = str_replace("/", "\/", $expression);
3165 3165
 
3166
-	return preg_replace('/' . $expression . '/' . $modif, $replace, $texte);
3166
+    return preg_replace('/' . $expression . '/' . $modif, $replace, $texte);
3167 3167
 }
3168 3168
 
3169 3169
 
@@ -3181,21 +3181,21 @@  discard block
 block discarded – undo
3181 3181
  **/
3182 3182
 function traiter_doublons_documents(&$doublons, $letexte) {
3183 3183
 
3184
-	// Verifier dans le texte & les notes (pas beau, helas)
3185
-	$t = $letexte . $GLOBALS['les_notes'];
3184
+    // Verifier dans le texte & les notes (pas beau, helas)
3185
+    $t = $letexte . $GLOBALS['les_notes'];
3186 3186
 
3187
-	if (strstr($t, 'spip_document_') // evite le preg_match_all si inutile
3188
-		and preg_match_all(
3189
-			',<[^>]+\sclass=["\']spip_document_([0-9]+)[\s"\'],imsS',
3190
-			$t, $matches, PREG_PATTERN_ORDER)
3191
-	) {
3192
-		if (!isset($doublons['documents'])) {
3193
-			$doublons['documents'] = "";
3194
-		}
3195
-		$doublons['documents'] .= "," . join(',', $matches[1]);
3196
-	}
3187
+    if (strstr($t, 'spip_document_') // evite le preg_match_all si inutile
3188
+        and preg_match_all(
3189
+            ',<[^>]+\sclass=["\']spip_document_([0-9]+)[\s"\'],imsS',
3190
+            $t, $matches, PREG_PATTERN_ORDER)
3191
+    ) {
3192
+        if (!isset($doublons['documents'])) {
3193
+            $doublons['documents'] = "";
3194
+        }
3195
+        $doublons['documents'] .= "," . join(',', $matches[1]);
3196
+    }
3197 3197
 
3198
-	return $letexte;
3198
+    return $letexte;
3199 3199
 }
3200 3200
 
3201 3201
 /**
@@ -3209,7 +3209,7 @@  discard block
 block discarded – undo
3209 3209
  * @return string Chaîne vide
3210 3210
  **/
3211 3211
 function vide($texte) {
3212
-	return "";
3212
+    return "";
3213 3213
 }
3214 3214
 
3215 3215
 //
@@ -3238,23 +3238,23 @@  discard block
 block discarded – undo
3238 3238
  *      Code HTML résultant
3239 3239
  **/
3240 3240
 function env_to_params($env, $ignore_params = array()) {
3241
-	$ignore_params = array_merge(
3242
-		array('id', 'lang', 'id_document', 'date', 'date_redac', 'align', 'fond', '', 'recurs', 'emb', 'dir_racine'),
3243
-		$ignore_params
3244
-	);
3245
-	if (!is_array($env)) {
3246
-		$env = unserialize($env);
3247
-	}
3248
-	$texte = "";
3249
-	if ($env) {
3250
-		foreach ($env as $i => $j) {
3251
-			if (is_string($j) and !in_array($i, $ignore_params)) {
3252
-				$texte .= "<param name='" . attribut_html($i) . "'\n\tvalue='" . attribut_html($j) . "' />";
3253
-			}
3254
-		}
3255
-	}
3256
-
3257
-	return $texte;
3241
+    $ignore_params = array_merge(
3242
+        array('id', 'lang', 'id_document', 'date', 'date_redac', 'align', 'fond', '', 'recurs', 'emb', 'dir_racine'),
3243
+        $ignore_params
3244
+    );
3245
+    if (!is_array($env)) {
3246
+        $env = unserialize($env);
3247
+    }
3248
+    $texte = "";
3249
+    if ($env) {
3250
+        foreach ($env as $i => $j) {
3251
+            if (is_string($j) and !in_array($i, $ignore_params)) {
3252
+                $texte .= "<param name='" . attribut_html($i) . "'\n\tvalue='" . attribut_html($j) . "' />";
3253
+            }
3254
+        }
3255
+    }
3256
+
3257
+    return $texte;
3258 3258
 }
3259 3259
 
3260 3260
 /**
@@ -3277,23 +3277,23 @@  discard block
 block discarded – undo
3277 3277
  *      Code HTML résultant
3278 3278
  **/
3279 3279
 function env_to_attributs($env, $ignore_params = array()) {
3280
-	$ignore_params = array_merge(
3281
-		array('id', 'lang', 'id_document', 'date', 'date_redac', 'align', 'fond', '', 'recurs', 'emb', 'dir_racine'),
3282
-		$ignore_params
3283
-	);
3284
-	if (!is_array($env)) {
3285
-		$env = unserialize($env);
3286
-	}
3287
-	$texte = "";
3288
-	if ($env) {
3289
-		foreach ($env as $i => $j) {
3290
-			if (is_string($j) and !in_array($i, $ignore_params)) {
3291
-				$texte .= attribut_html($i) . "='" . attribut_html($j) . "' ";
3292
-			}
3293
-		}
3294
-	}
3280
+    $ignore_params = array_merge(
3281
+        array('id', 'lang', 'id_document', 'date', 'date_redac', 'align', 'fond', '', 'recurs', 'emb', 'dir_racine'),
3282
+        $ignore_params
3283
+    );
3284
+    if (!is_array($env)) {
3285
+        $env = unserialize($env);
3286
+    }
3287
+    $texte = "";
3288
+    if ($env) {
3289
+        foreach ($env as $i => $j) {
3290
+            if (is_string($j) and !in_array($i, $ignore_params)) {
3291
+                $texte .= attribut_html($i) . "='" . attribut_html($j) . "' ";
3292
+            }
3293
+        }
3294
+    }
3295 3295
 
3296
-	return $texte;
3296
+    return $texte;
3297 3297
 }
3298 3298
 
3299 3299
 
@@ -3311,7 +3311,7 @@  discard block
 block discarded – undo
3311 3311
  * @return string Chaînes concaténés
3312 3312
  **/
3313 3313
 function concat(...$args) : string {
3314
-	return join('', $args);
3314
+    return join('', $args);
3315 3315
 }
3316 3316
 
3317 3317
 
@@ -3331,23 +3331,23 @@  discard block
 block discarded – undo
3331 3331
  *     Contenu du ou des fichiers, concaténé
3332 3332
  **/
3333 3333
 function charge_scripts($files, $script = true) {
3334
-	$flux = "";
3335
-	foreach (is_array($files) ? $files : explode("|", $files) as $file) {
3336
-		if (!is_string($file)) {
3337
-			continue;
3338
-		}
3339
-		if ($script) {
3340
-			$file = preg_match(",^\w+$,", $file) ? "javascript/$file.js" : '';
3341
-		}
3342
-		if ($file) {
3343
-			$path = find_in_path($file);
3344
-			if ($path) {
3345
-				$flux .= spip_file_get_contents($path);
3346
-			}
3347
-		}
3348
-	}
3349
-
3350
-	return $flux;
3334
+    $flux = "";
3335
+    foreach (is_array($files) ? $files : explode("|", $files) as $file) {
3336
+        if (!is_string($file)) {
3337
+            continue;
3338
+        }
3339
+        if ($script) {
3340
+            $file = preg_match(",^\w+$,", $file) ? "javascript/$file.js" : '';
3341
+        }
3342
+        if ($file) {
3343
+            $path = find_in_path($file);
3344
+            if ($path) {
3345
+                $flux .= spip_file_get_contents($path);
3346
+            }
3347
+        }
3348
+    }
3349
+
3350
+    return $flux;
3351 3351
 }
3352 3352
 
3353 3353
 /**
@@ -3358,20 +3358,20 @@  discard block
 block discarded – undo
3358 3358
  * @return string
3359 3359
  */
3360 3360
 function http_img_variante_svg_si_possible($img_file) {
3361
-	// on peut fournir une icone generique -xx.svg qui fera le job dans toutes les tailles, et qui est prioritaire sur le png
3362
-	// si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png
3363
-	if (preg_match(',-(\d+)[.](png|gif|svg)$,', $img_file, $m)
3364
-	  and $variante_svg_generique = substr($img_file, 0, -strlen($m[0])) . "-xx.svg"
3365
-	  and file_exists($variante_svg_generique)) {
3366
-		if ($variante_svg_size = substr($variante_svg_generique,0,-6) . $m[1] . ".svg" and file_exists($variante_svg_size)) {
3367
-			$img_file = $variante_svg_size;
3368
-		}
3369
-		else {
3370
-			$img_file = $variante_svg_generique;
3371
-		}
3372
-	}
3361
+    // on peut fournir une icone generique -xx.svg qui fera le job dans toutes les tailles, et qui est prioritaire sur le png
3362
+    // si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png
3363
+    if (preg_match(',-(\d+)[.](png|gif|svg)$,', $img_file, $m)
3364
+      and $variante_svg_generique = substr($img_file, 0, -strlen($m[0])) . "-xx.svg"
3365
+      and file_exists($variante_svg_generique)) {
3366
+        if ($variante_svg_size = substr($variante_svg_generique,0,-6) . $m[1] . ".svg" and file_exists($variante_svg_size)) {
3367
+            $img_file = $variante_svg_size;
3368
+        }
3369
+        else {
3370
+            $img_file = $variante_svg_generique;
3371
+        }
3372
+    }
3373 3373
 
3374
-	return $img_file;
3374
+    return $img_file;
3375 3375
 }
3376 3376
 
3377 3377
 /**
@@ -3392,53 +3392,53 @@  discard block
 block discarded – undo
3392 3392
  */
3393 3393
 function http_img_pack($img, $alt, $atts = '', $title = '', $options = array()) {
3394 3394
 
3395
-	$img_file = $img;
3396
-	if ($p = strpos($img_file, '?')) {
3397
-		$img_file = substr($img_file,0, $p);
3398
-	}
3399
-	if (!isset($options['chemin_image']) or $options['chemin_image'] == true) {
3400
-		$img_file = chemin_image($img);
3401
-	}
3402
-	else {
3403
-		if (!isset($options['variante_svg_si_possible']) or $options['variante_svg_si_possible'] == true){
3404
-			$img_file = http_img_variante_svg_si_possible($img_file);
3405
-		}
3406
-	}
3407
-	if (stripos($atts, 'width') === false) {
3408
-		// utiliser directement l'info de taille presente dans le nom
3409
-		if ((!isset($options['utiliser_suffixe_size'])
3410
-				or $options['utiliser_suffixe_size'] == true
3411
-			  or strpos($img_file, '-xx.svg') !== false)
3412
-			and (preg_match(',-([0-9]+)[.](png|gif|svg)$,', $img, $regs)
3413
-					 or preg_match(',\?([0-9]+)px$,', $img, $regs))
3414
-		) {
3415
-			$largeur = $hauteur = intval($regs[1]);
3416
-		} else {
3417
-			$taille = taille_image($img_file);
3418
-			list($hauteur, $largeur) = $taille;
3419
-			if (!$hauteur or !$largeur) {
3420
-				return "";
3421
-			}
3422
-		}
3423
-		$atts .= " width='" . $largeur . "' height='" . $hauteur . "'";
3424
-	}
3425
-
3426
-	if (file_exists($img_file)) {
3427
-		$img_file = timestamp($img_file);
3428
-	}
3429
-	if ($alt === false) {
3430
-		$alt = '';
3431
-	}
3432
-	elseif($alt or $alt==='') {
3433
-		$alt = " alt='".attribut_html($alt)."'";
3434
-	}
3435
-	else {
3436
-		$alt = " alt='".attribut_html($title)."'";
3437
-	}
3438
-	return "<img src='$img_file'$alt"
3439
-	. ($title ? ' title="' . attribut_html($title) . '"' : '')
3440
-	. " " . ltrim($atts)
3441
-	. " />";
3395
+    $img_file = $img;
3396
+    if ($p = strpos($img_file, '?')) {
3397
+        $img_file = substr($img_file,0, $p);
3398
+    }
3399
+    if (!isset($options['chemin_image']) or $options['chemin_image'] == true) {
3400
+        $img_file = chemin_image($img);
3401
+    }
3402
+    else {
3403
+        if (!isset($options['variante_svg_si_possible']) or $options['variante_svg_si_possible'] == true){
3404
+            $img_file = http_img_variante_svg_si_possible($img_file);
3405
+        }
3406
+    }
3407
+    if (stripos($atts, 'width') === false) {
3408
+        // utiliser directement l'info de taille presente dans le nom
3409
+        if ((!isset($options['utiliser_suffixe_size'])
3410
+                or $options['utiliser_suffixe_size'] == true
3411
+              or strpos($img_file, '-xx.svg') !== false)
3412
+            and (preg_match(',-([0-9]+)[.](png|gif|svg)$,', $img, $regs)
3413
+                     or preg_match(',\?([0-9]+)px$,', $img, $regs))
3414
+        ) {
3415
+            $largeur = $hauteur = intval($regs[1]);
3416
+        } else {
3417
+            $taille = taille_image($img_file);
3418
+            list($hauteur, $largeur) = $taille;
3419
+            if (!$hauteur or !$largeur) {
3420
+                return "";
3421
+            }
3422
+        }
3423
+        $atts .= " width='" . $largeur . "' height='" . $hauteur . "'";
3424
+    }
3425
+
3426
+    if (file_exists($img_file)) {
3427
+        $img_file = timestamp($img_file);
3428
+    }
3429
+    if ($alt === false) {
3430
+        $alt = '';
3431
+    }
3432
+    elseif($alt or $alt==='') {
3433
+        $alt = " alt='".attribut_html($alt)."'";
3434
+    }
3435
+    else {
3436
+        $alt = " alt='".attribut_html($title)."'";
3437
+    }
3438
+    return "<img src='$img_file'$alt"
3439
+    . ($title ? ' title="' . attribut_html($title) . '"' : '')
3440
+    . " " . ltrim($atts)
3441
+    . " />";
3442 3442
 }
3443 3443
 
3444 3444
 /**
@@ -3450,68 +3450,68 @@  discard block
 block discarded – undo
3450 3450
  * @return string
3451 3451
  */
3452 3452
 function http_style_background($img, $att = '', $size=null) {
3453
-	if ($size and is_numeric($size)){
3454
-		$size = trim($size) . "px";
3455
-	}
3456
-	return " style='background" .
3457
-		($att ? "" : "-image") . ": url(\"" . chemin_image($img) . "\")" . ($att ? (' ' . $att) : '') . ";"
3458
-		. ($size ? "background-size:{$size};" : '')
3459
-		. "'";
3453
+    if ($size and is_numeric($size)){
3454
+        $size = trim($size) . "px";
3455
+    }
3456
+    return " style='background" .
3457
+        ($att ? "" : "-image") . ": url(\"" . chemin_image($img) . "\")" . ($att ? (' ' . $att) : '') . ";"
3458
+        . ($size ? "background-size:{$size};" : '')
3459
+        . "'";
3460 3460
 }
3461 3461
 
3462 3462
 
3463 3463
 function helper_filtre_balise_img_svg_arguments($alt_or_size, $class_or_size, $size) {
3464
-	$args = [$alt_or_size, $class_or_size, $size];
3465
-	while (is_null(end($args)) and count($args)) {
3466
-		array_pop($args);
3467
-	}
3468
-	if (!count($args)) {
3469
-		return [null, null, null];
3470
-	}
3471
-	if (count($args) < 3) {
3472
-		$maybe_size = array_pop($args);
3473
-		// @2x
3474
-		// @1.5x
3475
-		// 512
3476
-		// 512x*
3477
-		// 512x300
3478
-		if (!strlen($maybe_size)
3479
-			or !preg_match(',^(@\d+(\.\d+)?x|\d+(x\*)?|\d+x\d+)$,', trim($maybe_size))) {
3480
-			$args[] = $maybe_size;
3481
-			$maybe_size = null;
3482
-		}
3483
-		while (count($args)<2) {
3484
-			$args[] = null; // default alt or class
3485
-		}
3486
-		$args[] = $maybe_size;
3487
-	}
3488
-	return $args;
3464
+    $args = [$alt_or_size, $class_or_size, $size];
3465
+    while (is_null(end($args)) and count($args)) {
3466
+        array_pop($args);
3467
+    }
3468
+    if (!count($args)) {
3469
+        return [null, null, null];
3470
+    }
3471
+    if (count($args) < 3) {
3472
+        $maybe_size = array_pop($args);
3473
+        // @2x
3474
+        // @1.5x
3475
+        // 512
3476
+        // 512x*
3477
+        // 512x300
3478
+        if (!strlen($maybe_size)
3479
+            or !preg_match(',^(@\d+(\.\d+)?x|\d+(x\*)?|\d+x\d+)$,', trim($maybe_size))) {
3480
+            $args[] = $maybe_size;
3481
+            $maybe_size = null;
3482
+        }
3483
+        while (count($args)<2) {
3484
+            $args[] = null; // default alt or class
3485
+        }
3486
+        $args[] = $maybe_size;
3487
+    }
3488
+    return $args;
3489 3489
 }
3490 3490
 
3491 3491
 function helper_filtre_balise_img_svg_size($img, $size) {
3492
-	// si size est de la forme '@2x' c'est un coeff multiplicateur sur la densite
3493
-	if (strpos($size, '@') === 0 and substr($size,-1) === 'x') {
3494
-		$coef = floatval(substr($size, 1, -1));
3495
-		list($h, $w) = taille_image($img);
3496
-		$height = intval(round($h / $coef));
3497
-		$width = intval(round($w / $coef));
3498
-	}
3499
-	// sinon c'est une valeur seule si image caree ou largeurxhauteur
3500
-	else {
3501
-		$size = explode('x', $size, 2);
3502
-		$size = array_map('trim', $size);
3503
-		$height = $width = intval(array_shift($size));
3504
-
3505
-		if (count($size) and reset($size)) {
3506
-			$height = array_shift($size);
3507
-			if ($height === '*') {
3508
-				list($h, $w) = taille_image($img);
3509
-				$height = intval(round($h * $width / $w));
3510
-			}
3511
-		}
3512
-	}
3513
-
3514
-	return [$width, $height];
3492
+    // si size est de la forme '@2x' c'est un coeff multiplicateur sur la densite
3493
+    if (strpos($size, '@') === 0 and substr($size,-1) === 'x') {
3494
+        $coef = floatval(substr($size, 1, -1));
3495
+        list($h, $w) = taille_image($img);
3496
+        $height = intval(round($h / $coef));
3497
+        $width = intval(round($w / $coef));
3498
+    }
3499
+    // sinon c'est une valeur seule si image caree ou largeurxhauteur
3500
+    else {
3501
+        $size = explode('x', $size, 2);
3502
+        $size = array_map('trim', $size);
3503
+        $height = $width = intval(array_shift($size));
3504
+
3505
+        if (count($size) and reset($size)) {
3506
+            $height = array_shift($size);
3507
+            if ($height === '*') {
3508
+                list($h, $w) = taille_image($img);
3509
+                $height = intval(round($h * $width / $w));
3510
+            }
3511
+        }
3512
+    }
3513
+
3514
+    return [$width, $height];
3515 3515
 }
3516 3516
 
3517 3517
 /**
@@ -3547,38 +3547,38 @@  discard block
 block discarded – undo
3547 3547
  */
3548 3548
 function filtre_balise_img_dist($img, $alt = '', $class = null, $size=null) {
3549 3549
 
3550
-	list($alt, $class, $size) = helper_filtre_balise_img_svg_arguments($alt, $class, $size);
3550
+    list($alt, $class, $size) = helper_filtre_balise_img_svg_arguments($alt, $class, $size);
3551 3551
 
3552
-	$img = trim($img);
3553
-	if (strpos($img, '<img') === 0) {
3554
-		if (!is_null($alt)) {
3555
-			$img = inserer_attribut($img, 'alt', $alt);
3556
-		}
3557
-		if (!is_null($class)) {
3558
-			if (strlen($class)) {
3559
-				$img = inserer_attribut($img, 'class', $class);
3560
-			}
3561
-			else {
3562
-				$img = vider_attribut($img, 'class');
3563
-			}
3564
-		}
3565
-	}
3566
-	else {
3567
-		$img = http_img_pack($img, $alt, $class ? " class='" . attribut_html($class) . "'" : '', '',
3568
-				array('chemin_image' => false, 'utiliser_suffixe_size' => false));
3569
-		if (is_null($alt)) {
3570
-			$img = vider_attribut($img, 'alt');
3571
-		}
3572
-	}
3552
+    $img = trim($img);
3553
+    if (strpos($img, '<img') === 0) {
3554
+        if (!is_null($alt)) {
3555
+            $img = inserer_attribut($img, 'alt', $alt);
3556
+        }
3557
+        if (!is_null($class)) {
3558
+            if (strlen($class)) {
3559
+                $img = inserer_attribut($img, 'class', $class);
3560
+            }
3561
+            else {
3562
+                $img = vider_attribut($img, 'class');
3563
+            }
3564
+        }
3565
+    }
3566
+    else {
3567
+        $img = http_img_pack($img, $alt, $class ? " class='" . attribut_html($class) . "'" : '', '',
3568
+                array('chemin_image' => false, 'utiliser_suffixe_size' => false));
3569
+        if (is_null($alt)) {
3570
+            $img = vider_attribut($img, 'alt');
3571
+        }
3572
+    }
3573 3573
 
3574
-	if ($img and !is_null($size) and strlen($size = trim($size))) {
3575
-		list($width, $height) = helper_filtre_balise_img_svg_size($img, $size);
3574
+    if ($img and !is_null($size) and strlen($size = trim($size))) {
3575
+        list($width, $height) = helper_filtre_balise_img_svg_size($img, $size);
3576 3576
 
3577
-		$img = inserer_attribut($img, 'width', $width);
3578
-		$img = inserer_attribut($img, 'height', $height);
3579
-	}
3577
+        $img = inserer_attribut($img, 'width', $width);
3578
+        $img = inserer_attribut($img, 'height', $height);
3579
+    }
3580 3580
 
3581
-	return $img;
3581
+    return $img;
3582 3582
 }
3583 3583
 
3584 3584
 
@@ -3612,67 +3612,67 @@  discard block
 block discarded – undo
3612 3612
  */
3613 3613
 function filtre_balise_svg_dist($img, $alt = '', $class = null, $size=null) {
3614 3614
 
3615
-	$img = trim($img);
3616
-	$img_file = $img;
3617
-	if (strpos($img, '<svg') === false){
3618
-		if ($p = strpos($img_file, '?')){
3619
-			$img_file = substr($img_file, 0, $p);
3620
-		}
3615
+    $img = trim($img);
3616
+    $img_file = $img;
3617
+    if (strpos($img, '<svg') === false){
3618
+        if ($p = strpos($img_file, '?')){
3619
+            $img_file = substr($img_file, 0, $p);
3620
+        }
3621 3621
 
3622
-		if (!$img_file or !$svg = file_get_contents($img_file)){
3623
-			return '';
3624
-		}
3625
-	}
3622
+        if (!$img_file or !$svg = file_get_contents($img_file)){
3623
+            return '';
3624
+        }
3625
+    }
3626 3626
 
3627
-	if (!preg_match(",<svg\b[^>]*>,UimsS", $svg, $match)) {
3628
-		return '';
3629
-	}
3627
+    if (!preg_match(",<svg\b[^>]*>,UimsS", $svg, $match)) {
3628
+        return '';
3629
+    }
3630 3630
 
3631
-	list($alt, $class, $size) = helper_filtre_balise_img_svg_arguments($alt, $class, $size);
3631
+    list($alt, $class, $size) = helper_filtre_balise_img_svg_arguments($alt, $class, $size);
3632 3632
 
3633
-	$balise_svg = $match[0];
3634
-	$balise_svg_source = $balise_svg;
3633
+    $balise_svg = $match[0];
3634
+    $balise_svg_source = $balise_svg;
3635 3635
 
3636
-	// entete XML à supprimer
3637
-	$svg = preg_replace(',^\s*<\?xml[^>]*\?' . '>,', '', $svg);
3636
+    // entete XML à supprimer
3637
+    $svg = preg_replace(',^\s*<\?xml[^>]*\?' . '>,', '', $svg);
3638 3638
 
3639
-	// IE est toujours mon ami
3640
-	$balise_svg = inserer_attribut($balise_svg, 'focusable', 'false');
3639
+    // IE est toujours mon ami
3640
+    $balise_svg = inserer_attribut($balise_svg, 'focusable', 'false');
3641 3641
 
3642
-	// regler la classe
3643
-	if (!is_null($class)) {
3644
-		if (strlen($class)) {
3645
-			$balise_svg = inserer_attribut($balise_svg, 'class', $class);
3646
-		}
3647
-		else {
3648
-			$balise_svg = vider_attribut($balise_svg, 'class');
3649
-		}
3650
-	}
3642
+    // regler la classe
3643
+    if (!is_null($class)) {
3644
+        if (strlen($class)) {
3645
+            $balise_svg = inserer_attribut($balise_svg, 'class', $class);
3646
+        }
3647
+        else {
3648
+            $balise_svg = vider_attribut($balise_svg, 'class');
3649
+        }
3650
+    }
3651 3651
 
3652
-	// regler le alt
3653
-	if ($alt){
3654
-		$balise_svg = inserer_attribut($balise_svg, 'role', 'img');
3655
-		$id = "img-svg-title-" . substr(md5("$img_file:$svg:$alt"),0,4);
3656
-		$balise_svg = inserer_attribut($balise_svg, 'aria-labelledby', $id);
3657
-		$title = "<title id=\"$id\">" . entites_html($alt)."</title>\n";
3658
-		$balise_svg .= $title;
3659
-	}
3660
-	else {
3661
-		$balise_svg = inserer_attribut($balise_svg, 'aria-hidden', 'true');
3662
-	}
3652
+    // regler le alt
3653
+    if ($alt){
3654
+        $balise_svg = inserer_attribut($balise_svg, 'role', 'img');
3655
+        $id = "img-svg-title-" . substr(md5("$img_file:$svg:$alt"),0,4);
3656
+        $balise_svg = inserer_attribut($balise_svg, 'aria-labelledby', $id);
3657
+        $title = "<title id=\"$id\">" . entites_html($alt)."</title>\n";
3658
+        $balise_svg .= $title;
3659
+    }
3660
+    else {
3661
+        $balise_svg = inserer_attribut($balise_svg, 'aria-hidden', 'true');
3662
+    }
3663 3663
 
3664
-	$svg = str_replace($balise_svg_source, $balise_svg, $svg);
3664
+    $svg = str_replace($balise_svg_source, $balise_svg, $svg);
3665 3665
 
3666
-	if (!is_null($size) and strlen($size = trim($size))) {
3667
-		list($width, $height) = helper_filtre_balise_img_svg_size($svg, $size);
3666
+    if (!is_null($size) and strlen($size = trim($size))) {
3667
+        list($width, $height) = helper_filtre_balise_img_svg_size($svg, $size);
3668 3668
 
3669
-		if (!function_exists('svg_redimensionner')) {
3670
-			include_spip('inc/svg');
3671
-		}
3672
-		$svg = svg_redimensionner($svg, $width, $height);
3673
-	}
3669
+        if (!function_exists('svg_redimensionner')) {
3670
+            include_spip('inc/svg');
3671
+        }
3672
+        $svg = svg_redimensionner($svg, $width, $height);
3673
+    }
3674 3674
 
3675
-	return $svg;
3675
+    return $svg;
3676 3676
 }
3677 3677
 
3678 3678
 
@@ -3698,17 +3698,17 @@  discard block
 block discarded – undo
3698 3698
  *     Code HTML résultant
3699 3699
  **/
3700 3700
 function filtre_foreach_dist($tableau, $modele = 'foreach') {
3701
-	$texte = '';
3702
-	if (is_array($tableau)) {
3703
-		foreach ($tableau as $k => $v) {
3704
-			$res = recuperer_fond('modeles/' . $modele,
3705
-				array_merge(array('cle' => $k), (is_array($v) ? $v : array('valeur' => $v)))
3706
-			);
3707
-			$texte .= $res;
3708
-		}
3709
-	}
3701
+    $texte = '';
3702
+    if (is_array($tableau)) {
3703
+        foreach ($tableau as $k => $v) {
3704
+            $res = recuperer_fond('modeles/' . $modele,
3705
+                array_merge(array('cle' => $k), (is_array($v) ? $v : array('valeur' => $v)))
3706
+            );
3707
+            $texte .= $res;
3708
+        }
3709
+    }
3710 3710
 
3711
-	return $texte;
3711
+    return $texte;
3712 3712
 }
3713 3713
 
3714 3714
 
@@ -3733,37 +3733,37 @@  discard block
 block discarded – undo
3733 3733
  *         - tout : retourne toutes les informations du plugin actif
3734 3734
  **/
3735 3735
 function filtre_info_plugin_dist($plugin, $type_info, $reload = false) {
3736
-	include_spip('inc/plugin');
3737
-	$plugin = strtoupper($plugin);
3738
-	$plugins_actifs = liste_plugin_actifs();
3739
-
3740
-	if (!$plugin) {
3741
-		return serialize(array_keys($plugins_actifs));
3742
-	} elseif (empty($plugins_actifs[$plugin]) and !$reload) {
3743
-		return '';
3744
-	} elseif (($type_info == 'est_actif') and !$reload) {
3745
-		return $plugins_actifs[$plugin] ? 1 : 0;
3746
-	} elseif (isset($plugins_actifs[$plugin][$type_info]) and !$reload) {
3747
-		return $plugins_actifs[$plugin][$type_info];
3748
-	} else {
3749
-		$get_infos = charger_fonction('get_infos', 'plugins');
3750
-		// On prend en compte les extensions
3751
-		if (!is_dir($plugins_actifs[$plugin]['dir_type'])) {
3752
-			$dir_plugins = constant($plugins_actifs[$plugin]['dir_type']);
3753
-		} else {
3754
-			$dir_plugins = $plugins_actifs[$plugin]['dir_type'];
3755
-		}
3756
-		if (!$infos = $get_infos($plugins_actifs[$plugin]['dir'], $reload, $dir_plugins)) {
3757
-			return '';
3758
-		}
3759
-		if ($type_info == 'tout') {
3760
-			return $infos;
3761
-		} elseif ($type_info == 'est_actif') {
3762
-			return $infos ? 1 : 0;
3763
-		} else {
3764
-			return strval($infos[$type_info]);
3765
-		}
3766
-	}
3736
+    include_spip('inc/plugin');
3737
+    $plugin = strtoupper($plugin);
3738
+    $plugins_actifs = liste_plugin_actifs();
3739
+
3740
+    if (!$plugin) {
3741
+        return serialize(array_keys($plugins_actifs));
3742
+    } elseif (empty($plugins_actifs[$plugin]) and !$reload) {
3743
+        return '';
3744
+    } elseif (($type_info == 'est_actif') and !$reload) {
3745
+        return $plugins_actifs[$plugin] ? 1 : 0;
3746
+    } elseif (isset($plugins_actifs[$plugin][$type_info]) and !$reload) {
3747
+        return $plugins_actifs[$plugin][$type_info];
3748
+    } else {
3749
+        $get_infos = charger_fonction('get_infos', 'plugins');
3750
+        // On prend en compte les extensions
3751
+        if (!is_dir($plugins_actifs[$plugin]['dir_type'])) {
3752
+            $dir_plugins = constant($plugins_actifs[$plugin]['dir_type']);
3753
+        } else {
3754
+            $dir_plugins = $plugins_actifs[$plugin]['dir_type'];
3755
+        }
3756
+        if (!$infos = $get_infos($plugins_actifs[$plugin]['dir'], $reload, $dir_plugins)) {
3757
+            return '';
3758
+        }
3759
+        if ($type_info == 'tout') {
3760
+            return $infos;
3761
+        } elseif ($type_info == 'est_actif') {
3762
+            return $infos ? 1 : 0;
3763
+        } else {
3764
+            return strval($infos[$type_info]);
3765
+        }
3766
+    }
3767 3767
 }
3768 3768
 
3769 3769
 
@@ -3790,9 +3790,9 @@  discard block
 block discarded – undo
3790 3790
  *     Code HTML de l'image de puce de statut à insérer (et du menu de changement si présent)
3791 3791
  */
3792 3792
 function puce_changement_statut($id_objet, $statut, $id_rubrique, $type, $ajax = false) {
3793
-	$puce_statut = charger_fonction('puce_statut', 'inc');
3793
+    $puce_statut = charger_fonction('puce_statut', 'inc');
3794 3794
 
3795
-	return $puce_statut($id_objet, $statut, $id_rubrique, $type, $ajax);
3795
+    return $puce_statut($id_objet, $statut, $id_rubrique, $type, $ajax);
3796 3796
 }
3797 3797
 
3798 3798
 
@@ -3822,13 +3822,13 @@  discard block
 block discarded – undo
3822 3822
  *     Code HTML de l'image de puce de statut à insérer (et du menu de changement si présent)
3823 3823
  */
3824 3824
 function filtre_puce_statut_dist($statut, $objet, $id_objet = 0, $id_parent = 0) {
3825
-	static $puce_statut = null;
3826
-	if (!$puce_statut) {
3827
-		$puce_statut = charger_fonction('puce_statut', 'inc');
3828
-	}
3825
+    static $puce_statut = null;
3826
+    if (!$puce_statut) {
3827
+        $puce_statut = charger_fonction('puce_statut', 'inc');
3828
+    }
3829 3829
 
3830
-	return $puce_statut($id_objet, $statut, $id_parent, $objet, false,
3831
-		objet_info($objet, 'editable') ? _ACTIVER_PUCE_RAPIDE : false);
3830
+    return $puce_statut($id_objet, $statut, $id_parent, $objet, false,
3831
+        objet_info($objet, 'editable') ? _ACTIVER_PUCE_RAPIDE : false);
3832 3832
 }
3833 3833
 
3834 3834
 
@@ -3855,95 +3855,95 @@  discard block
 block discarded – undo
3855 3855
  *   hash du contexte
3856 3856
  */
3857 3857
 function encoder_contexte_ajax($c, $form = '', $emboite = null, $ajaxid = '') {
3858
-	if (is_string($c)
3859
-		and @unserialize($c) !== false
3860
-	) {
3861
-		$c = unserialize($c);
3862
-	}
3863
-
3864
-	// supprimer les parametres debut_x
3865
-	// pour que la pagination ajax ne soit pas plantee
3866
-	// si on charge la page &debut_x=1 : car alors en cliquant sur l'item 0,
3867
-	// le debut_x=0 n'existe pas, et on resterait sur 1
3868
-	if (is_array($c)) {
3869
-		foreach ($c as $k => $v) {
3870
-			if (strpos($k, 'debut_') === 0) {
3871
-				unset($c[$k]);
3872
-			}
3873
-		}
3874
-	}
3875
-
3876
-	if (!function_exists('calculer_cle_action')) {
3877
-		include_spip("inc/securiser_action");
3878
-	}
3879
-
3880
-	$c = serialize($c);
3881
-	$cle = calculer_cle_action($form . $c);
3882
-	$c = "$cle:$c";
3883
-
3884
-	// on ne stocke pas les contextes dans des fichiers en cache
3885
-	// par defaut, sauf si cette configuration a été forcée
3886
-	// OU que la longueur de l’argument géneré est plus long
3887
-	// que ce qui est toléré.
3888
-	$cache_contextes_ajax = (defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX);
3889
-	if (!$cache_contextes_ajax) {
3890
-		$env = $c;
3891
-		if (function_exists('gzdeflate') && function_exists('gzinflate')) {
3892
-			$env = gzdeflate($env);
3893
-		}
3894
-		$env = _xor($env);
3895
-		$env = base64_encode($env);
3896
-		$len = strlen($env);
3897
-		// Si l’url est trop longue pour le navigateur
3898
-		$max_len = _CACHE_CONTEXTES_AJAX_SUR_LONGUEUR;
3899
-		if ($len > $max_len) {
3900
-			$cache_contextes_ajax = true;
3901
-			spip_log("Contextes AJAX forces en fichiers !"
3902
-				. " Cela arrive lorsque la valeur du contexte" 
3903
-				. " depasse la longueur maximale autorisee ($max_len). Ici : $len."
3904
-				, _LOG_AVERTISSEMENT);
3905
-		}
3906
-		// Sinon si Suhosin est actif et a une la valeur maximale des variables en GET...
3907
-		elseif (
3908
-			$max_len = @ini_get('suhosin.get.max_value_length')
3909
-			and $max_len < $len
3910
-		) {
3911
-			$cache_contextes_ajax = true;
3912
-			spip_log("Contextes AJAX forces en fichiers !"
3913
-				. " Cela arrive lorsque la valeur du contexte"
3914
-				. " depasse la longueur maximale autorisee par Suhosin"
3915
-				. " ($max_len) dans 'suhosin.get.max_value_length'. Ici : $len."
3916
-				. " Vous devriez modifier les parametres de Suhosin"
3917
-				. " pour accepter au moins 1024 caracteres.", _LOG_AVERTISSEMENT);
3918
-		} 
3919
-
3920
-	}
3921
-
3922
-	if ($cache_contextes_ajax) {
3923
-		$dir = sous_repertoire(_DIR_CACHE, 'contextes');
3924
-		// stocker les contextes sur disque et ne passer qu'un hash dans l'url
3925
-		$md5 = md5($c);
3926
-		ecrire_fichier("$dir/c$md5", $c);
3927
-		$env = $md5;
3928
-	}
3929
-
3930
-	if ($emboite === null) {
3931
-		return $env;
3932
-	}
3933
-	if (!trim($emboite)) {
3934
-		return "";
3935
-	}
3936
-	// toujours encoder l'url source dans le bloc ajax
3937
-	$r = self();
3938
-	$r = ' data-origin="' . $r . '"';
3939
-	$class = 'ajaxbloc';
3940
-	if ($ajaxid and is_string($ajaxid)) {
3941
-		// ajaxid est normalement conforme a un nom de classe css
3942
-		// on ne verifie pas la conformite, mais on passe entites_html par dessus par precaution
3943
-		$class .= ' ajax-id-' . entites_html($ajaxid);
3944
-	}
3945
-
3946
-	return "<div class='$class' " . "data-ajax-env='$env'$r>\n$emboite</div><!--ajaxbloc-->\n";
3858
+    if (is_string($c)
3859
+        and @unserialize($c) !== false
3860
+    ) {
3861
+        $c = unserialize($c);
3862
+    }
3863
+
3864
+    // supprimer les parametres debut_x
3865
+    // pour que la pagination ajax ne soit pas plantee
3866
+    // si on charge la page &debut_x=1 : car alors en cliquant sur l'item 0,
3867
+    // le debut_x=0 n'existe pas, et on resterait sur 1
3868
+    if (is_array($c)) {
3869
+        foreach ($c as $k => $v) {
3870
+            if (strpos($k, 'debut_') === 0) {
3871
+                unset($c[$k]);
3872
+            }
3873
+        }
3874
+    }
3875
+
3876
+    if (!function_exists('calculer_cle_action')) {
3877
+        include_spip("inc/securiser_action");
3878
+    }
3879
+
3880
+    $c = serialize($c);
3881
+    $cle = calculer_cle_action($form . $c);
3882
+    $c = "$cle:$c";
3883
+
3884
+    // on ne stocke pas les contextes dans des fichiers en cache
3885
+    // par defaut, sauf si cette configuration a été forcée
3886
+    // OU que la longueur de l’argument géneré est plus long
3887
+    // que ce qui est toléré.
3888
+    $cache_contextes_ajax = (defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX);
3889
+    if (!$cache_contextes_ajax) {
3890
+        $env = $c;
3891
+        if (function_exists('gzdeflate') && function_exists('gzinflate')) {
3892
+            $env = gzdeflate($env);
3893
+        }
3894
+        $env = _xor($env);
3895
+        $env = base64_encode($env);
3896
+        $len = strlen($env);
3897
+        // Si l’url est trop longue pour le navigateur
3898
+        $max_len = _CACHE_CONTEXTES_AJAX_SUR_LONGUEUR;
3899
+        if ($len > $max_len) {
3900
+            $cache_contextes_ajax = true;
3901
+            spip_log("Contextes AJAX forces en fichiers !"
3902
+                . " Cela arrive lorsque la valeur du contexte" 
3903
+                . " depasse la longueur maximale autorisee ($max_len). Ici : $len."
3904
+                , _LOG_AVERTISSEMENT);
3905
+        }
3906
+        // Sinon si Suhosin est actif et a une la valeur maximale des variables en GET...
3907
+        elseif (
3908
+            $max_len = @ini_get('suhosin.get.max_value_length')
3909
+            and $max_len < $len
3910
+        ) {
3911
+            $cache_contextes_ajax = true;
3912
+            spip_log("Contextes AJAX forces en fichiers !"
3913
+                . " Cela arrive lorsque la valeur du contexte"
3914
+                . " depasse la longueur maximale autorisee par Suhosin"
3915
+                . " ($max_len) dans 'suhosin.get.max_value_length'. Ici : $len."
3916
+                . " Vous devriez modifier les parametres de Suhosin"
3917
+                . " pour accepter au moins 1024 caracteres.", _LOG_AVERTISSEMENT);
3918
+        } 
3919
+
3920
+    }
3921
+
3922
+    if ($cache_contextes_ajax) {
3923
+        $dir = sous_repertoire(_DIR_CACHE, 'contextes');
3924
+        // stocker les contextes sur disque et ne passer qu'un hash dans l'url
3925
+        $md5 = md5($c);
3926
+        ecrire_fichier("$dir/c$md5", $c);
3927
+        $env = $md5;
3928
+    }
3929
+
3930
+    if ($emboite === null) {
3931
+        return $env;
3932
+    }
3933
+    if (!trim($emboite)) {
3934
+        return "";
3935
+    }
3936
+    // toujours encoder l'url source dans le bloc ajax
3937
+    $r = self();
3938
+    $r = ' data-origin="' . $r . '"';
3939
+    $class = 'ajaxbloc';
3940
+    if ($ajaxid and is_string($ajaxid)) {
3941
+        // ajaxid est normalement conforme a un nom de classe css
3942
+        // on ne verifie pas la conformite, mais on passe entites_html par dessus par precaution
3943
+        $class .= ' ajax-id-' . entites_html($ajaxid);
3944
+    }
3945
+
3946
+    return "<div class='$class' " . "data-ajax-env='$env'$r>\n$emboite</div><!--ajaxbloc-->\n";
3947 3947
 }
3948 3948
 
3949 3949
 /**
@@ -3963,36 +3963,36 @@  discard block
 block discarded – undo
3963 3963
  *   - false : erreur de décodage
3964 3964
  */
3965 3965
 function decoder_contexte_ajax($c, $form = '') {
3966
-	if (!function_exists('calculer_cle_action')) {
3967
-		include_spip("inc/securiser_action");
3968
-	}
3969
-	if (((defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX) or strlen($c) == 32)
3970
-		and $dir = sous_repertoire(_DIR_CACHE, 'contextes')
3971
-		and lire_fichier("$dir/c$c", $contexte)
3972
-	) {
3973
-		$c = $contexte;
3974
-	} else {
3975
-		$c = @base64_decode($c);
3976
-		$c = _xor($c);
3977
-		if (function_exists('gzdeflate') && function_exists('gzinflate')) {
3978
-			$c = @gzinflate($c);
3979
-		}
3980
-	}
3981
-
3982
-	// extraire la signature en debut de contexte
3983
-	// et la verifier avant de deserializer
3984
-	// format : signature:donneesserializees
3985
-	if ($p = strpos($c,":")){
3986
-		$cle = substr($c,0,$p);
3987
-		$c = substr($c,$p+1);
3988
-
3989
-		if ($cle == calculer_cle_action($form . $c)) {
3990
-			$env = @unserialize($c);
3991
-			return $env;
3992
-		}
3993
-	}
3994
-
3995
-	return false;
3966
+    if (!function_exists('calculer_cle_action')) {
3967
+        include_spip("inc/securiser_action");
3968
+    }
3969
+    if (((defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX) or strlen($c) == 32)
3970
+        and $dir = sous_repertoire(_DIR_CACHE, 'contextes')
3971
+        and lire_fichier("$dir/c$c", $contexte)
3972
+    ) {
3973
+        $c = $contexte;
3974
+    } else {
3975
+        $c = @base64_decode($c);
3976
+        $c = _xor($c);
3977
+        if (function_exists('gzdeflate') && function_exists('gzinflate')) {
3978
+            $c = @gzinflate($c);
3979
+        }
3980
+    }
3981
+
3982
+    // extraire la signature en debut de contexte
3983
+    // et la verifier avant de deserializer
3984
+    // format : signature:donneesserializees
3985
+    if ($p = strpos($c,":")){
3986
+        $cle = substr($c,0,$p);
3987
+        $c = substr($c,$p+1);
3988
+
3989
+        if ($cle == calculer_cle_action($form . $c)) {
3990
+            $env = @unserialize($c);
3991
+            return $env;
3992
+        }
3993
+    }
3994
+
3995
+    return false;
3996 3996
 }
3997 3997
 
3998 3998
 
@@ -4010,20 +4010,20 @@  discard block
 block discarded – undo
4010 4010
  *    Message décrypté ou encrypté
4011 4011
  **/
4012 4012
 function _xor($message, $key = null) {
4013
-	if (is_null($key)) {
4014
-		if (!function_exists('calculer_cle_action')) {
4015
-			include_spip("inc/securiser_action");
4016
-		}
4017
-		$key = pack("H*", calculer_cle_action('_xor'));
4018
-	}
4013
+    if (is_null($key)) {
4014
+        if (!function_exists('calculer_cle_action')) {
4015
+            include_spip("inc/securiser_action");
4016
+        }
4017
+        $key = pack("H*", calculer_cle_action('_xor'));
4018
+    }
4019 4019
 
4020
-	$keylen = strlen($key);
4021
-	$messagelen = strlen($message);
4022
-	for ($i = 0; $i < $messagelen; $i++) {
4023
-		$message[$i] = ~($message[$i] ^ $key[$i % $keylen]);
4024
-	}
4020
+    $keylen = strlen($key);
4021
+    $messagelen = strlen($message);
4022
+    for ($i = 0; $i < $messagelen; $i++) {
4023
+        $message[$i] = ~($message[$i] ^ $key[$i % $keylen]);
4024
+    }
4025 4025
 
4026
-	return $message;
4026
+    return $message;
4027 4027
 }
4028 4028
 
4029 4029
 /**
@@ -4086,37 +4086,37 @@  discard block
 block discarded – undo
4086 4086
  *   Code HTML
4087 4087
  */
4088 4088
 function lien_ou_expose($url, $libelle = null, $on = false, $class = "", $title = "", $rel = "", $evt = '') {
4089
-	if ($on) {
4090
-		$bal = 'strong';
4091
-		$class = "";
4092
-		$att = "";
4093
-		// si $on passe la balise et optionnelement une ou ++classe
4094
-		// a.active span.selected.active etc....
4095
-		if (is_string($on) and (strncmp($on, 'a', 1)==0 or strncmp($on, 'span', 4)==0 or strncmp($on, 'strong', 6)==0)){
4096
-			$on = explode(".", $on);
4097
-			// on verifie que c'est exactement une des 3 balises a, span ou strong
4098
-			if (in_array(reset($on), array('a', 'span', 'strong'))){
4099
-				$bal = array_shift($on);
4100
-				$class = implode(" ", $on);
4101
-				if ($bal=="a"){
4102
-					$att = 'href="#" ';
4103
-				}
4104
-			}
4105
-		}
4106
-		$att .= 'class="' . ($class ? attribut_html($class) . ' ' : '') . (defined('_LIEN_OU_EXPOSE_CLASS_ON') ? _LIEN_OU_EXPOSE_CLASS_ON : 'on') . '"';
4107
-	} else {
4108
-		$bal = 'a';
4109
-		$att = "href='$url'"
4110
-			. ($title ? " title='" . attribut_html($title) . "'" : '')
4111
-			. ($class ? " class='" . attribut_html($class) . "'" : '')
4112
-			. ($rel ? " rel='" . attribut_html($rel) . "'" : '')
4113
-			. $evt;
4114
-	}
4115
-	if ($libelle === null) {
4116
-		$libelle = $url;
4117
-	}
4118
-
4119
-	return "<$bal $att>$libelle</$bal>";
4089
+    if ($on) {
4090
+        $bal = 'strong';
4091
+        $class = "";
4092
+        $att = "";
4093
+        // si $on passe la balise et optionnelement une ou ++classe
4094
+        // a.active span.selected.active etc....
4095
+        if (is_string($on) and (strncmp($on, 'a', 1)==0 or strncmp($on, 'span', 4)==0 or strncmp($on, 'strong', 6)==0)){
4096
+            $on = explode(".", $on);
4097
+            // on verifie que c'est exactement une des 3 balises a, span ou strong
4098
+            if (in_array(reset($on), array('a', 'span', 'strong'))){
4099
+                $bal = array_shift($on);
4100
+                $class = implode(" ", $on);
4101
+                if ($bal=="a"){
4102
+                    $att = 'href="#" ';
4103
+                }
4104
+            }
4105
+        }
4106
+        $att .= 'class="' . ($class ? attribut_html($class) . ' ' : '') . (defined('_LIEN_OU_EXPOSE_CLASS_ON') ? _LIEN_OU_EXPOSE_CLASS_ON : 'on') . '"';
4107
+    } else {
4108
+        $bal = 'a';
4109
+        $att = "href='$url'"
4110
+            . ($title ? " title='" . attribut_html($title) . "'" : '')
4111
+            . ($class ? " class='" . attribut_html($class) . "'" : '')
4112
+            . ($rel ? " rel='" . attribut_html($rel) . "'" : '')
4113
+            . $evt;
4114
+    }
4115
+    if ($libelle === null) {
4116
+        $libelle = $url;
4117
+    }
4118
+
4119
+    return "<$bal $att>$libelle</$bal>";
4120 4120
 }
4121 4121
 
4122 4122
 
@@ -4133,37 +4133,37 @@  discard block
 block discarded – undo
4133 4133
  * @return string : la chaine de langue finale en utilisant la fonction _T()
4134 4134
  */
4135 4135
 function singulier_ou_pluriel($nb, $chaine_un, $chaine_plusieurs, $var = 'nb', $vars = array()) {
4136
-	static $local_singulier_ou_pluriel = array();
4136
+    static $local_singulier_ou_pluriel = array();
4137 4137
 
4138
-	// si nb=0 ou pas de $vars valide on retourne une chaine vide, a traiter par un |sinon
4139
-	if (!is_numeric($nb) or $nb == 0) {
4140
-		return "";
4141
-	}
4142
-	if (!is_array($vars)) {
4143
-		return "";
4144
-	}
4138
+    // si nb=0 ou pas de $vars valide on retourne une chaine vide, a traiter par un |sinon
4139
+    if (!is_numeric($nb) or $nb == 0) {
4140
+        return "";
4141
+    }
4142
+    if (!is_array($vars)) {
4143
+        return "";
4144
+    }
4145 4145
 
4146
-	$langue = $GLOBALS['spip_lang'];
4147
-	if (!isset($local_singulier_ou_pluriel[$langue])) {
4148
-		$local_singulier_ou_pluriel[$langue] = false;
4149
-		if ($f = charger_fonction("singulier_ou_pluriel_${langue}", 'inc', true)
4150
-		  or $f = charger_fonction("singulier_ou_pluriel", 'inc', true)) {
4151
-			$local_singulier_ou_pluriel[$langue] = $f;
4152
-		}
4153
-	}
4146
+    $langue = $GLOBALS['spip_lang'];
4147
+    if (!isset($local_singulier_ou_pluriel[$langue])) {
4148
+        $local_singulier_ou_pluriel[$langue] = false;
4149
+        if ($f = charger_fonction("singulier_ou_pluriel_${langue}", 'inc', true)
4150
+          or $f = charger_fonction("singulier_ou_pluriel", 'inc', true)) {
4151
+            $local_singulier_ou_pluriel[$langue] = $f;
4152
+        }
4153
+    }
4154 4154
 
4155
-	// si on a une surcharge on l'utilise
4156
-	if ($local_singulier_ou_pluriel[$langue]) {
4157
-		return ($local_singulier_ou_pluriel[$langue])($nb, $chaine_un, $chaine_plusieurs, $var, $vars);
4158
-	}
4155
+    // si on a une surcharge on l'utilise
4156
+    if ($local_singulier_ou_pluriel[$langue]) {
4157
+        return ($local_singulier_ou_pluriel[$langue])($nb, $chaine_un, $chaine_plusieurs, $var, $vars);
4158
+    }
4159 4159
 
4160
-	// sinon traitement par defaut
4161
-	$vars[$var] = $nb;
4162
-	if ($nb >= 2) {
4163
-		return _T($chaine_plusieurs, $vars);
4164
-	} else {
4165
-		return _T($chaine_un, $vars);
4166
-	}
4160
+    // sinon traitement par defaut
4161
+    $vars[$var] = $nb;
4162
+    if ($nb >= 2) {
4163
+        return _T($chaine_plusieurs, $vars);
4164
+    } else {
4165
+        return _T($chaine_un, $vars);
4166
+    }
4167 4167
 }
4168 4168
 
4169 4169
 
@@ -4191,71 +4191,71 @@  discard block
 block discarded – undo
4191 4191
  */
4192 4192
 function prepare_icone_base($type, $lien, $texte, $fond, $fonction = '', $class = '', $javascript = '') {
4193 4193
 
4194
-	$class_lien = $class_bouton = $class;
4195
-
4196
-	// Normaliser la fonction et compléter la classe en fonction
4197
-	if (in_array($fonction, ['del', 'supprimer.gif'])) {
4198
-		$class_lien .= ' danger';
4199
-		$class_bouton .= ' btn_danger';
4200
-	} elseif ($fonction == 'rien.gif') {
4201
-		$fonction = '';
4202
-	} elseif ($fonction == 'delsafe') {
4203
-		$fonction = 'del';
4204
-	}
4205
-
4206
-	$fond_origine = $fond;
4207
-	// Remappage des icone : article-24.png+new => article-new-24.png
4208
-	if ($icone_renommer = charger_fonction('icone_renommer', 'inc', true)) {
4209
-		list($fond, $fonction) = $icone_renommer($fond, $fonction);
4210
-	}
4211
-
4212
-	// Ajouter le type d'objet dans la classe
4213
-	$objet_type = substr(basename($fond), 0, -4);
4214
-	$class_lien .= " $objet_type";
4215
-	$class_bouton .= " $objet_type";
4216
-
4217
-	// Texte
4218
-	$alt = attribut_html($texte);
4219
-	$title = " title=\"$alt\""; // est-ce pertinent de doubler le alt par un title ?
4220
-
4221
-	// Liens : préparer les classes ajax
4222
-	$ajax = '';
4223
-	if ($type === 'lien') {
4224
-		if (strpos($class_lien, 'ajax') !== false) {
4225
-			$ajax = 'ajax';
4226
-			if (strpos($class_lien, 'preload') !== false) {
4227
-				$ajax .= ' preload';
4228
-			}
4229
-			if (strpos($class_lien, 'nocache') !== false) {
4230
-				$ajax .= ' nocache';
4231
-			}
4232
-			$ajax = " class='$ajax'";
4233
-		}
4234
-	}
4235
-
4236
-	// Repérer la taille et l'ajouter dans la classe
4237
-	$size = 24;
4238
-	if (preg_match("/-([0-9]{1,3})[.](gif|png|svg)$/i", $fond, $match)
4239
-	  or preg_match("/-([0-9]{1,3})([.](gif|png|svg))?$/i", $fond_origine, $match)) {
4240
-		$size = $match[1];
4241
-	}
4242
-	$class_lien .= " s$size";
4243
-	$class_bouton .= " s$size";
4244
-
4245
-	// Icône
4246
-	$icone = http_img_pack($fond, $alt, "width='$size' height='$size'");
4247
-	$icone = "<span class=\"icone-image".($fonction ? " icone-fonction icone-fonction-$fonction" : "") . "\">$icone</span>";
4248
-
4249
-	// Markup final
4250
-	if ($type == 'lien') {
4251
-		return "<span class='icone $class_lien'>"
4252
-		. "<a href='$lien'$title$ajax$javascript>"
4253
-		. $icone
4254
-		. "<b>$texte</b>"
4255
-		. "</a></span>\n";
4256
-	} else {
4257
-		return bouton_action("$icone $texte", $lien, $class_bouton, $javascript, $alt);
4258
-	}
4194
+    $class_lien = $class_bouton = $class;
4195
+
4196
+    // Normaliser la fonction et compléter la classe en fonction
4197
+    if (in_array($fonction, ['del', 'supprimer.gif'])) {
4198
+        $class_lien .= ' danger';
4199
+        $class_bouton .= ' btn_danger';
4200
+    } elseif ($fonction == 'rien.gif') {
4201
+        $fonction = '';
4202
+    } elseif ($fonction == 'delsafe') {
4203
+        $fonction = 'del';
4204
+    }
4205
+
4206
+    $fond_origine = $fond;
4207
+    // Remappage des icone : article-24.png+new => article-new-24.png
4208
+    if ($icone_renommer = charger_fonction('icone_renommer', 'inc', true)) {
4209
+        list($fond, $fonction) = $icone_renommer($fond, $fonction);
4210
+    }
4211
+
4212
+    // Ajouter le type d'objet dans la classe
4213
+    $objet_type = substr(basename($fond), 0, -4);
4214
+    $class_lien .= " $objet_type";
4215
+    $class_bouton .= " $objet_type";
4216
+
4217
+    // Texte
4218
+    $alt = attribut_html($texte);
4219
+    $title = " title=\"$alt\""; // est-ce pertinent de doubler le alt par un title ?
4220
+
4221
+    // Liens : préparer les classes ajax
4222
+    $ajax = '';
4223
+    if ($type === 'lien') {
4224
+        if (strpos($class_lien, 'ajax') !== false) {
4225
+            $ajax = 'ajax';
4226
+            if (strpos($class_lien, 'preload') !== false) {
4227
+                $ajax .= ' preload';
4228
+            }
4229
+            if (strpos($class_lien, 'nocache') !== false) {
4230
+                $ajax .= ' nocache';
4231
+            }
4232
+            $ajax = " class='$ajax'";
4233
+        }
4234
+    }
4235
+
4236
+    // Repérer la taille et l'ajouter dans la classe
4237
+    $size = 24;
4238
+    if (preg_match("/-([0-9]{1,3})[.](gif|png|svg)$/i", $fond, $match)
4239
+      or preg_match("/-([0-9]{1,3})([.](gif|png|svg))?$/i", $fond_origine, $match)) {
4240
+        $size = $match[1];
4241
+    }
4242
+    $class_lien .= " s$size";
4243
+    $class_bouton .= " s$size";
4244
+
4245
+    // Icône
4246
+    $icone = http_img_pack($fond, $alt, "width='$size' height='$size'");
4247
+    $icone = "<span class=\"icone-image".($fonction ? " icone-fonction icone-fonction-$fonction" : "") . "\">$icone</span>";
4248
+
4249
+    // Markup final
4250
+    if ($type == 'lien') {
4251
+        return "<span class='icone $class_lien'>"
4252
+        . "<a href='$lien'$title$ajax$javascript>"
4253
+        . $icone
4254
+        . "<b>$texte</b>"
4255
+        . "</a></span>\n";
4256
+    } else {
4257
+        return bouton_action("$icone $texte", $lien, $class_bouton, $javascript, $alt);
4258
+    }
4259 4259
 }
4260 4260
 
4261 4261
 /**
@@ -4279,7 +4279,7 @@  discard block
 block discarded – undo
4279 4279
  *     Code HTML du lien
4280 4280
  **/
4281 4281
 function icone_base($lien, $texte, $fond, $fonction = "", $class = "", $javascript = "") {
4282
-	return prepare_icone_base('lien', $lien, $texte, $fond, $fonction, $class, $javascript);
4282
+    return prepare_icone_base('lien', $lien, $texte, $fond, $fonction, $class, $javascript);
4283 4283
 }
4284 4284
 
4285 4285
 /**
@@ -4314,7 +4314,7 @@  discard block
 block discarded – undo
4314 4314
  *     Code HTML du lien
4315 4315
  **/
4316 4316
 function filtre_icone_verticale_dist($lien, $texte, $fond, $fonction = "", $class = "", $javascript = "") {
4317
-	return icone_base($lien, $texte, $fond, $fonction, "verticale $class", $javascript);
4317
+    return icone_base($lien, $texte, $fond, $fonction, "verticale $class", $javascript);
4318 4318
 }
4319 4319
 
4320 4320
 /**
@@ -4359,7 +4359,7 @@  discard block
 block discarded – undo
4359 4359
  *     Code HTML du lien
4360 4360
  **/
4361 4361
 function filtre_icone_horizontale_dist($lien, $texte, $fond, $fonction = "", $class = "", $javascript = "") {
4362
-	return icone_base($lien, $texte, $fond, $fonction, "horizontale $class", $javascript);
4362
+    return icone_base($lien, $texte, $fond, $fonction, "horizontale $class", $javascript);
4363 4363
 }
4364 4364
 
4365 4365
 /**
@@ -4390,7 +4390,7 @@  discard block
 block discarded – undo
4390 4390
  *     Code HTML du lien
4391 4391
  **/
4392 4392
 function filtre_bouton_action_horizontal_dist($lien, $texte, $fond, $fonction = "", $class = "", $confirm = "") {
4393
-	return prepare_icone_base('bouton', $lien, $texte, $fond, $fonction, $class, $confirm);
4393
+    return prepare_icone_base('bouton', $lien, $texte, $fond, $fonction, $class, $confirm);
4394 4394
 }
4395 4395
 
4396 4396
 /**
@@ -4421,7 +4421,7 @@  discard block
 block discarded – undo
4421 4421
  *     Code HTML du lien
4422 4422
  */
4423 4423
 function filtre_icone_dist($lien, $texte, $fond, $align = "", $fonction = "", $class = "", $javascript = "") {
4424
-	return icone_base($lien, $texte, $fond, $fonction, "verticale $align $class", $javascript);
4424
+    return icone_base($lien, $texte, $fond, $fonction, "verticale $align $class", $javascript);
4425 4425
 }
4426 4426
 
4427 4427
 
@@ -4469,26 +4469,26 @@  discard block
 block discarded – undo
4469 4469
  * @return string Code CSS
4470 4470
  */
4471 4471
 function bando_images_background() {
4472
-	include_spip('inc/bandeau');
4473
-	// recuperer tous les boutons et leurs images
4474
-	$boutons = definir_barre_boutons(definir_barre_contexte(), true, false);
4472
+    include_spip('inc/bandeau');
4473
+    // recuperer tous les boutons et leurs images
4474
+    $boutons = definir_barre_boutons(definir_barre_contexte(), true, false);
4475 4475
 
4476
-	$res = "";
4477
-	foreach ($boutons as $page => $detail) {
4478
-		$selecteur = (in_array($page, array('outils_rapides', 'outils_collaboratifs')) ? "" : ".navigation_avec_icones ");
4479
-		if (is_array($detail->sousmenu)) {
4480
-			foreach ($detail->sousmenu as $souspage => $sousdetail) {
4481
-				if ($sousdetail->icone and strlen(trim($sousdetail->icone))) {
4482
-					// recherche de déclinaisons .svg même pour les -new- …
4483
-					$img = http_img_pack($sousdetail->icone, '', '', '', ['variante_svg_si_possible' => true, 'chemin_image' => false]);
4484
-					$img = extraire_attribut($img, 'src');
4485
-					$res .= "\n$selecteur.bando2_$souspage {background-image:url($img);}";
4486
-				}
4487
-			}
4488
-		}
4489
-	}
4476
+    $res = "";
4477
+    foreach ($boutons as $page => $detail) {
4478
+        $selecteur = (in_array($page, array('outils_rapides', 'outils_collaboratifs')) ? "" : ".navigation_avec_icones ");
4479
+        if (is_array($detail->sousmenu)) {
4480
+            foreach ($detail->sousmenu as $souspage => $sousdetail) {
4481
+                if ($sousdetail->icone and strlen(trim($sousdetail->icone))) {
4482
+                    // recherche de déclinaisons .svg même pour les -new- …
4483
+                    $img = http_img_pack($sousdetail->icone, '', '', '', ['variante_svg_si_possible' => true, 'chemin_image' => false]);
4484
+                    $img = extraire_attribut($img, 'src');
4485
+                    $res .= "\n$selecteur.bando2_$souspage {background-image:url($img);}";
4486
+                }
4487
+            }
4488
+        }
4489
+    }
4490 4490
 
4491
-	return $res;
4491
+    return $res;
4492 4492
 }
4493 4493
 
4494 4494
 /**
@@ -4513,27 +4513,27 @@  discard block
 block discarded – undo
4513 4513
  */
4514 4514
 function bouton_action($libelle, $url, $class = '', $confirm = '', $title = '', $callback = '') {
4515 4515
 
4516
-	// Classes : dispatcher `ajax` sur le formulaire
4517
-	$class_form = '';
4518
-	if (strpos($class, 'ajax') !== false) {
4519
-		$class_form = 'ajax';
4520
-		$class = str_replace('ajax', '', $class);
4521
-	}
4522
-	$class_btn = 'submit ' . trim($class);
4516
+    // Classes : dispatcher `ajax` sur le formulaire
4517
+    $class_form = '';
4518
+    if (strpos($class, 'ajax') !== false) {
4519
+        $class_form = 'ajax';
4520
+        $class = str_replace('ajax', '', $class);
4521
+    }
4522
+    $class_btn = 'submit ' . trim($class);
4523 4523
 
4524
-	if ($confirm) {
4525
-		$confirm = "confirm(\"" . attribut_html($confirm) . "\")";
4526
-		if ($callback) {
4527
-			$callback = "$confirm?($callback):false";
4528
-		} else {
4529
-			$callback = $confirm;
4530
-		}
4531
-	}
4532
-	$onclick = $callback ? " onclick='return " . addcslashes($callback, "'") . "'" : "";
4533
-	$title = $title ? " title='$title'" : '';
4524
+    if ($confirm) {
4525
+        $confirm = "confirm(\"" . attribut_html($confirm) . "\")";
4526
+        if ($callback) {
4527
+            $callback = "$confirm?($callback):false";
4528
+        } else {
4529
+            $callback = $confirm;
4530
+        }
4531
+    }
4532
+    $onclick = $callback ? " onclick='return " . addcslashes($callback, "'") . "'" : "";
4533
+    $title = $title ? " title='$title'" : '';
4534 4534
 
4535
-	return "<form class='bouton_action_post $class_form' method='post' action='$url'><div>" . form_hidden($url)
4536
-	. "<button type='submit' class='$class_btn'$title$onclick>$libelle</button></div></form>";
4535
+    return "<form class='bouton_action_post $class_form' method='post' action='$url'><div>" . form_hidden($url)
4536
+    . "<button type='submit' class='$class_btn'$title$onclick>$libelle</button></div></form>";
4537 4537
 }
4538 4538
 
4539 4539
 /**
@@ -4556,89 +4556,89 @@  discard block
 block discarded – undo
4556 4556
  * @return string
4557 4557
  */
4558 4558
 function generer_info_entite($id_objet, $type_objet, $info, $etoile = '', $params = []) {
4559
-	static $trouver_table = null;
4560
-	static $objets;
4561
-
4562
-	// On verifie qu'on a tout ce qu'il faut
4563
-	$id_objet = intval($id_objet);
4564
-	if (!($id_objet and $type_objet and $info)) {
4565
-		return '';
4566
-	}
4567
-
4568
-	// si on a deja note que l'objet n'existe pas, ne pas aller plus loin
4569
-	if (isset($objets[$type_objet]) and $objets[$type_objet] === false) {
4570
-		return '';
4571
-	}
4572
-
4573
-	// Si on demande l'url, on retourne direct la fonction
4574
-	if ($info == 'url') {
4575
-		return generer_url_entite($id_objet, $type_objet, ...$params);
4576
-	}
4577
-
4578
-	// Sinon on va tout chercher dans la table et on garde en memoire
4579
-	$demande_titre = ($info === 'titre');
4580
-	$demande_introduction = ($info === 'introduction');
4581
-
4582
-	// On ne fait la requete que si on a pas deja l'objet ou si on demande le titre mais qu'on ne l'a pas encore
4583
-	if (!isset($objets[$type_objet][$id_objet])
4584
-		or
4585
-		($demande_titre and !isset($objets[$type_objet][$id_objet]['titre']))
4586
-	) {
4587
-		if (!$trouver_table) {
4588
-			$trouver_table = charger_fonction('trouver_table', 'base');
4589
-		}
4590
-		$desc = $trouver_table(table_objet_sql($type_objet));
4591
-		if (!$desc) {
4592
-			return $objets[$type_objet] = false;
4593
-		}
4594
-
4595
-		// Si on demande le titre, on le gere en interne
4596
-		$champ_titre = "";
4597
-		if ($demande_titre) {
4598
-			// si pas de titre declare mais champ titre, il sera peuple par le select *
4599
-			$champ_titre = (!empty($desc['titre'])) ? ', ' . $desc['titre'] : '';
4600
-		}
4601
-		include_spip('base/abstract_sql');
4602
-		include_spip('base/connect_sql');
4603
-		$objets[$type_objet][$id_objet] = sql_fetsel(
4604
-			'*' . $champ_titre,
4605
-			$desc['table_sql'],
4606
-			id_table_objet($type_objet) . ' = ' . intval($id_objet)
4607
-		);
4608
-
4609
-		// Toujours noter la longueur d'introduction, même si pas demandé cette fois-ci
4610
-		$objets[$type_objet]['introduction_longueur'] = $desc['introduction_longueur'] ?? null;
4611
-	}
4612
-
4613
-	// Pour les fonction generer_xxx, si on demande l'introduction,
4614
-	// ajouter la longueur au début des params supplémentaires
4615
-	if ($demande_introduction) {
4616
-		$introduction_longueur = $objets[$type_objet]['introduction_longueur'];
4617
-		array_unshift($params, $introduction_longueur);
4618
-	}
4619
-
4620
-	// Si la fonction generer_TRUC_TYPE existe, on l'utilise pour formater $info_generee
4621
-	if ($generer = charger_fonction("generer_${info}_${type_objet}", '', true)) {
4622
-		$info_generee = $generer($id_objet, $objets[$type_objet][$id_objet], ...$params);
4623
-	} // Si la fonction generer_TRUC_entite existe, on l'utilise pour formater $info_generee
4624
-	else {
4625
-		if ($generer = charger_fonction("generer_${info}_entite", '', true)) {
4626
-			$info_generee = $generer($id_objet, $type_objet, $objets[$type_objet][$id_objet], ...$params);
4627
-		} // Sinon on prend directement le champ SQL tel quel
4628
-		else {
4629
-			$info_generee = (isset($objets[$type_objet][$id_objet][$info]) ? $objets[$type_objet][$id_objet][$info] : '');
4630
-		}
4631
-	}
4632
-
4633
-	// On va ensuite appliquer les traitements automatiques si besoin
4634
-	if (!$etoile) {
4635
-		// FIXME: on fournit un ENV minimum avec id et type et connect=''
4636
-		// mais ce fonctionnement est a ameliorer !
4637
-		$info_generee = appliquer_traitement_champ($info_generee, $info, table_objet($type_objet),
4638
-			array('id_objet' => $id_objet, 'objet' => $type_objet, ''));
4639
-	}
4640
-
4641
-	return $info_generee;
4559
+    static $trouver_table = null;
4560
+    static $objets;
4561
+
4562
+    // On verifie qu'on a tout ce qu'il faut
4563
+    $id_objet = intval($id_objet);
4564
+    if (!($id_objet and $type_objet and $info)) {
4565
+        return '';
4566
+    }
4567
+
4568
+    // si on a deja note que l'objet n'existe pas, ne pas aller plus loin
4569
+    if (isset($objets[$type_objet]) and $objets[$type_objet] === false) {
4570
+        return '';
4571
+    }
4572
+
4573
+    // Si on demande l'url, on retourne direct la fonction
4574
+    if ($info == 'url') {
4575
+        return generer_url_entite($id_objet, $type_objet, ...$params);
4576
+    }
4577
+
4578
+    // Sinon on va tout chercher dans la table et on garde en memoire
4579
+    $demande_titre = ($info === 'titre');
4580
+    $demande_introduction = ($info === 'introduction');
4581
+
4582
+    // On ne fait la requete que si on a pas deja l'objet ou si on demande le titre mais qu'on ne l'a pas encore
4583
+    if (!isset($objets[$type_objet][$id_objet])
4584
+        or
4585
+        ($demande_titre and !isset($objets[$type_objet][$id_objet]['titre']))
4586
+    ) {
4587
+        if (!$trouver_table) {
4588
+            $trouver_table = charger_fonction('trouver_table', 'base');
4589
+        }
4590
+        $desc = $trouver_table(table_objet_sql($type_objet));
4591
+        if (!$desc) {
4592
+            return $objets[$type_objet] = false;
4593
+        }
4594
+
4595
+        // Si on demande le titre, on le gere en interne
4596
+        $champ_titre = "";
4597
+        if ($demande_titre) {
4598
+            // si pas de titre declare mais champ titre, il sera peuple par le select *
4599
+            $champ_titre = (!empty($desc['titre'])) ? ', ' . $desc['titre'] : '';
4600
+        }
4601
+        include_spip('base/abstract_sql');
4602
+        include_spip('base/connect_sql');
4603
+        $objets[$type_objet][$id_objet] = sql_fetsel(
4604
+            '*' . $champ_titre,
4605
+            $desc['table_sql'],
4606
+            id_table_objet($type_objet) . ' = ' . intval($id_objet)
4607
+        );
4608
+
4609
+        // Toujours noter la longueur d'introduction, même si pas demandé cette fois-ci
4610
+        $objets[$type_objet]['introduction_longueur'] = $desc['introduction_longueur'] ?? null;
4611
+    }
4612
+
4613
+    // Pour les fonction generer_xxx, si on demande l'introduction,
4614
+    // ajouter la longueur au début des params supplémentaires
4615
+    if ($demande_introduction) {
4616
+        $introduction_longueur = $objets[$type_objet]['introduction_longueur'];
4617
+        array_unshift($params, $introduction_longueur);
4618
+    }
4619
+
4620
+    // Si la fonction generer_TRUC_TYPE existe, on l'utilise pour formater $info_generee
4621
+    if ($generer = charger_fonction("generer_${info}_${type_objet}", '', true)) {
4622
+        $info_generee = $generer($id_objet, $objets[$type_objet][$id_objet], ...$params);
4623
+    } // Si la fonction generer_TRUC_entite existe, on l'utilise pour formater $info_generee
4624
+    else {
4625
+        if ($generer = charger_fonction("generer_${info}_entite", '', true)) {
4626
+            $info_generee = $generer($id_objet, $type_objet, $objets[$type_objet][$id_objet], ...$params);
4627
+        } // Sinon on prend directement le champ SQL tel quel
4628
+        else {
4629
+            $info_generee = (isset($objets[$type_objet][$id_objet][$info]) ? $objets[$type_objet][$id_objet][$info] : '');
4630
+        }
4631
+    }
4632
+
4633
+    // On va ensuite appliquer les traitements automatiques si besoin
4634
+    if (!$etoile) {
4635
+        // FIXME: on fournit un ENV minimum avec id et type et connect=''
4636
+        // mais ce fonctionnement est a ameliorer !
4637
+        $info_generee = appliquer_traitement_champ($info_generee, $info, table_objet($type_objet),
4638
+            array('id_objet' => $id_objet, 'objet' => $type_objet, ''));
4639
+    }
4640
+
4641
+    return $info_generee;
4642 4642
 }
4643 4643
 
4644 4644
 /**
@@ -4671,36 +4671,36 @@  discard block
 block discarded – undo
4671 4671
  */
4672 4672
 function generer_introduction_entite($id_objet, $type_objet, $ligne_sql, $introduction_longueur = null, $longueur_ou_suite = null, $suite = null, $connect = '') {
4673 4673
 
4674
-	$descriptif = $ligne_sql['descriptif'] ?? '';
4675
-	$texte = $ligne_sql['texte'] ?? '';
4676
-	// En absence de descriptif, on se rabat sur chapo + texte
4677
-	if (isset($ligne_sql['chapo'])) {
4678
-		$chapo = $ligne_sql['chapo'];
4679
-		$texte = strlen($descriptif) ?
4680
-			'' :
4681
-			"$chapo \n\n $texte";
4682
-	}
4674
+    $descriptif = $ligne_sql['descriptif'] ?? '';
4675
+    $texte = $ligne_sql['texte'] ?? '';
4676
+    // En absence de descriptif, on se rabat sur chapo + texte
4677
+    if (isset($ligne_sql['chapo'])) {
4678
+        $chapo = $ligne_sql['chapo'];
4679
+        $texte = strlen($descriptif) ?
4680
+            '' :
4681
+            "$chapo \n\n $texte";
4682
+    }
4683 4683
 
4684
-	// Longueur en paramètre, sinon celle renseignée dans la description de l'objet, sinon valeur en dur
4685
-	if (!intval($longueur_ou_suite)) {
4686
-		$longueur = intval($introduction_longueur ?: 600);
4687
-	} else {
4688
-		$longueur = intval($longueur_ou_suite);
4689
-	}
4684
+    // Longueur en paramètre, sinon celle renseignée dans la description de l'objet, sinon valeur en dur
4685
+    if (!intval($longueur_ou_suite)) {
4686
+        $longueur = intval($introduction_longueur ?: 600);
4687
+    } else {
4688
+        $longueur = intval($longueur_ou_suite);
4689
+    }
4690 4690
 
4691
-	// On peut optionnellement passer la suite en 1er paramètre de la balise
4692
-	// Ex : #INTRODUCTION{...}
4693
-	if (
4694
-		is_null($suite)
4695
-		and !intval($longueur_ou_suite)
4696
-	) {
4697
-		$suite = $longueur_ou_suite;
4698
-	}
4691
+    // On peut optionnellement passer la suite en 1er paramètre de la balise
4692
+    // Ex : #INTRODUCTION{...}
4693
+    if (
4694
+        is_null($suite)
4695
+        and !intval($longueur_ou_suite)
4696
+    ) {
4697
+        $suite = $longueur_ou_suite;
4698
+    }
4699 4699
 
4700
-	$f = chercher_filtre('introduction');
4701
-	$introduction = $f($descriptif, $texte, $longueur, $connect, $suite);
4700
+    $f = chercher_filtre('introduction');
4701
+    $introduction = $f($descriptif, $texte, $longueur, $connect, $suite);
4702 4702
 
4703
-	return $introduction;
4703
+    return $introduction;
4704 4704
 }
4705 4705
 
4706 4706
 /**
@@ -4714,44 +4714,44 @@  discard block
 block discarded – undo
4714 4714
  * @return string
4715 4715
  */
4716 4716
 function appliquer_traitement_champ($texte, $champ, $table_objet = '', $env = array(), $connect = '') {
4717
-	if (!$champ) {
4718
-		return $texte;
4719
-	}
4717
+    if (!$champ) {
4718
+        return $texte;
4719
+    }
4720 4720
 	
4721
-	// On charge toujours les filtres de texte car la majorité des traitements les utilisent
4722
-	// et il ne faut pas partir du principe que c'est déjà chargé (form ajax, etc)
4723
-	include_spip('inc/texte');
4721
+    // On charge toujours les filtres de texte car la majorité des traitements les utilisent
4722
+    // et il ne faut pas partir du principe que c'est déjà chargé (form ajax, etc)
4723
+    include_spip('inc/texte');
4724 4724
 	
4725
-	$champ = strtoupper($champ);
4726
-	$traitements = isset($GLOBALS['table_des_traitements'][$champ]) ? $GLOBALS['table_des_traitements'][$champ] : false;
4727
-	if (!$traitements or !is_array($traitements)) {
4728
-		return $texte;
4729
-	}
4725
+    $champ = strtoupper($champ);
4726
+    $traitements = isset($GLOBALS['table_des_traitements'][$champ]) ? $GLOBALS['table_des_traitements'][$champ] : false;
4727
+    if (!$traitements or !is_array($traitements)) {
4728
+        return $texte;
4729
+    }
4730 4730
 
4731
-	$traitement = '';
4732
-	if ($table_objet and (!isset($traitements[0]) or count($traitements) > 1)) {
4733
-		// necessaire pour prendre en charge les vieux appels avec un table_objet_sql en 3e arg
4734
-		$table_objet = table_objet($table_objet);
4735
-		if (isset($traitements[$table_objet])) {
4736
-			$traitement = $traitements[$table_objet];
4737
-		}
4738
-	}
4739
-	if (!$traitement and isset($traitements[0])) {
4740
-		$traitement = $traitements[0];
4741
-	}
4742
-	// (sinon prendre le premier de la liste par defaut ?)
4731
+    $traitement = '';
4732
+    if ($table_objet and (!isset($traitements[0]) or count($traitements) > 1)) {
4733
+        // necessaire pour prendre en charge les vieux appels avec un table_objet_sql en 3e arg
4734
+        $table_objet = table_objet($table_objet);
4735
+        if (isset($traitements[$table_objet])) {
4736
+            $traitement = $traitements[$table_objet];
4737
+        }
4738
+    }
4739
+    if (!$traitement and isset($traitements[0])) {
4740
+        $traitement = $traitements[0];
4741
+    }
4742
+    // (sinon prendre le premier de la liste par defaut ?)
4743 4743
 
4744
-	if (!$traitement) {
4745
-		return $texte;
4746
-	}
4744
+    if (!$traitement) {
4745
+        return $texte;
4746
+    }
4747 4747
 
4748
-	$traitement = str_replace('%s', "'" . texte_script($texte) . "'", $traitement);
4748
+    $traitement = str_replace('%s', "'" . texte_script($texte) . "'", $traitement);
4749 4749
 
4750
-	// Fournir $connect et $Pile[0] au traitement si besoin
4751
-	$Pile = array(0 => $env);
4752
-	eval("\$texte = $traitement;");
4750
+    // Fournir $connect et $Pile[0] au traitement si besoin
4751
+    $Pile = array(0 => $env);
4752
+    eval("\$texte = $traitement;");
4753 4753
 
4754
-	return $texte;
4754
+    return $texte;
4755 4755
 }
4756 4756
 
4757 4757
 
@@ -4765,21 +4765,21 @@  discard block
 block discarded – undo
4765 4765
  * @return string
4766 4766
  */
4767 4767
 function generer_lien_entite($id_objet, $objet, $longueur = 80, $connect = null) {
4768
-	include_spip('inc/liens');
4769
-	$titre = traiter_raccourci_titre($id_objet, $objet, $connect);
4770
-	// lorsque l'objet n'est plus declare (plugin desactive par exemple)
4771
-	// le raccourcis n'est plus valide
4772
-	$titre = isset($titre['titre']) ? typo($titre['titre']) : '';
4773
-	// on essaye avec generer_info_entite ?
4774
-	if (!strlen($titre) and !$connect) {
4775
-		$titre = generer_info_entite($id_objet, $objet, 'titre');
4776
-	}
4777
-	if (!strlen($titre)) {
4778
-		$titre = _T('info_sans_titre');
4779
-	}
4780
-	$url = generer_url_entite($id_objet, $objet, '', '', $connect);
4768
+    include_spip('inc/liens');
4769
+    $titre = traiter_raccourci_titre($id_objet, $objet, $connect);
4770
+    // lorsque l'objet n'est plus declare (plugin desactive par exemple)
4771
+    // le raccourcis n'est plus valide
4772
+    $titre = isset($titre['titre']) ? typo($titre['titre']) : '';
4773
+    // on essaye avec generer_info_entite ?
4774
+    if (!strlen($titre) and !$connect) {
4775
+        $titre = generer_info_entite($id_objet, $objet, 'titre');
4776
+    }
4777
+    if (!strlen($titre)) {
4778
+        $titre = _T('info_sans_titre');
4779
+    }
4780
+    $url = generer_url_entite($id_objet, $objet, '', '', $connect);
4781 4781
 
4782
-	return "<a href='$url' class='$objet'>" . couper($titre, $longueur) . "</a>";
4782
+    return "<a href='$url' class='$objet'>" . couper($titre, $longueur) . "</a>";
4783 4783
 }
4784 4784
 
4785 4785
 
@@ -4796,15 +4796,15 @@  discard block
 block discarded – undo
4796 4796
  * @return string
4797 4797
  */
4798 4798
 function wrap($texte, $wrap) {
4799
-	$balises = extraire_balises($wrap);
4800
-	if (preg_match_all(",<([a-z]\w*)\b[^>]*>,UimsS", $wrap, $regs, PREG_PATTERN_ORDER)) {
4801
-		$texte = $wrap . $texte;
4802
-		$regs = array_reverse($regs[1]);
4803
-		$wrap = "</" . implode("></", $regs) . ">";
4804
-		$texte = $texte . $wrap;
4805
-	}
4799
+    $balises = extraire_balises($wrap);
4800
+    if (preg_match_all(",<([a-z]\w*)\b[^>]*>,UimsS", $wrap, $regs, PREG_PATTERN_ORDER)) {
4801
+        $texte = $wrap . $texte;
4802
+        $regs = array_reverse($regs[1]);
4803
+        $wrap = "</" . implode("></", $regs) . ">";
4804
+        $texte = $texte . $wrap;
4805
+    }
4806 4806
 
4807
-	return $texte;
4807
+    return $texte;
4808 4808
 }
4809 4809
 
4810 4810
 
@@ -4824,43 +4824,43 @@  discard block
 block discarded – undo
4824 4824
  * @return array|mixed|string
4825 4825
  */
4826 4826
 function filtre_print_dist($u, $join = "<br />", $indent = 0) {
4827
-	if (is_string($u)) {
4828
-		$u = typo($u);
4827
+    if (is_string($u)) {
4828
+        $u = typo($u);
4829 4829
 
4830
-		return $u;
4831
-	}
4830
+        return $u;
4831
+    }
4832 4832
 
4833
-	// caster $u en array si besoin
4834
-	if (is_object($u)) {
4835
-		$u = (array)$u;
4836
-	}
4833
+    // caster $u en array si besoin
4834
+    if (is_object($u)) {
4835
+        $u = (array)$u;
4836
+    }
4837 4837
 
4838
-	if (is_array($u)) {
4839
-		$out = "";
4840
-		// toutes les cles sont numeriques ?
4841
-		// et aucun enfant n'est un tableau
4842
-		// liste simple separee par des virgules
4843
-		$numeric_keys = array_map('is_numeric', array_keys($u));
4844
-		$array_values = array_map('is_array', $u);
4845
-		$object_values = array_map('is_object', $u);
4846
-		if (array_sum($numeric_keys) == count($numeric_keys)
4847
-			and !array_sum($array_values)
4848
-			and !array_sum($object_values)
4849
-		) {
4850
-			return join(", ", array_map('filtre_print_dist', $u));
4851
-		}
4838
+    if (is_array($u)) {
4839
+        $out = "";
4840
+        // toutes les cles sont numeriques ?
4841
+        // et aucun enfant n'est un tableau
4842
+        // liste simple separee par des virgules
4843
+        $numeric_keys = array_map('is_numeric', array_keys($u));
4844
+        $array_values = array_map('is_array', $u);
4845
+        $object_values = array_map('is_object', $u);
4846
+        if (array_sum($numeric_keys) == count($numeric_keys)
4847
+            and !array_sum($array_values)
4848
+            and !array_sum($object_values)
4849
+        ) {
4850
+            return join(", ", array_map('filtre_print_dist', $u));
4851
+        }
4852 4852
 
4853
-		// sinon on passe a la ligne et on indente
4854
-		$i_str = str_pad("", $indent, " ");
4855
-		foreach ($u as $k => $v) {
4856
-			$out .= $join . $i_str . "$k: " . filtre_print_dist($v, $join, $indent + 2);
4857
-		}
4853
+        // sinon on passe a la ligne et on indente
4854
+        $i_str = str_pad("", $indent, " ");
4855
+        foreach ($u as $k => $v) {
4856
+            $out .= $join . $i_str . "$k: " . filtre_print_dist($v, $join, $indent + 2);
4857
+        }
4858 4858
 
4859
-		return $out;
4860
-	}
4859
+        return $out;
4860
+    }
4861 4861
 
4862
-	// on sait pas quoi faire...
4863
-	return $u;
4862
+    // on sait pas quoi faire...
4863
+    return $u;
4864 4864
 }
4865 4865
 
4866 4866
 
@@ -4873,10 +4873,10 @@  discard block
 block discarded – undo
4873 4873
  * @return string|array
4874 4874
  */
4875 4875
 function objet_info($objet, $info) {
4876
-	$table = table_objet_sql($objet);
4877
-	$infos = lister_tables_objets_sql($table);
4876
+    $table = table_objet_sql($objet);
4877
+    $infos = lister_tables_objets_sql($table);
4878 4878
 
4879
-	return (isset($infos[$info]) ? $infos[$info] : '');
4879
+    return (isset($infos[$info]) ? $infos[$info] : '');
4880 4880
 }
4881 4881
 
4882 4882
 /**
@@ -4891,11 +4891,11 @@  discard block
 block discarded – undo
4891 4891
  *     Texte traduit du comptage, tel que '3 articles'
4892 4892
  */
4893 4893
 function objet_afficher_nb($nb, $objet) {
4894
-	if (!$nb) {
4895
-		return _T(objet_info($objet, 'info_aucun_objet'));
4896
-	} else {
4897
-		return _T(objet_info($objet, $nb == 1 ? 'info_1_objet' : 'info_nb_objets'), array('nb' => $nb));
4898
-	}
4894
+    if (!$nb) {
4895
+        return _T(objet_info($objet, 'info_aucun_objet'));
4896
+    } else {
4897
+        return _T(objet_info($objet, $nb == 1 ? 'info_1_objet' : 'info_nb_objets'), array('nb' => $nb));
4898
+    }
4899 4899
 }
4900 4900
 
4901 4901
 /**
@@ -4907,11 +4907,11 @@  discard block
 block discarded – undo
4907 4907
  * @return string
4908 4908
  */
4909 4909
 function objet_icone($objet, $taille = 24, $class='') {
4910
-	$icone = objet_info($objet, 'icone_objet') . "-" . $taille . ".png";
4911
-	$icone = chemin_image($icone);
4912
-	$balise_img = charger_filtre('balise_img');
4910
+    $icone = objet_info($objet, 'icone_objet') . "-" . $taille . ".png";
4911
+    $icone = chemin_image($icone);
4912
+    $balise_img = charger_filtre('balise_img');
4913 4913
 
4914
-	return $icone ? $balise_img($icone, _T(objet_info($objet, 'texte_objet')), $class, $taille) : '';
4914
+    return $icone ? $balise_img($icone, _T(objet_info($objet, 'texte_objet')), $class, $taille) : '';
4915 4915
 }
4916 4916
 
4917 4917
 /**
@@ -4932,12 +4932,12 @@  discard block
 block discarded – undo
4932 4932
  * @return string
4933 4933
  */
4934 4934
 function objet_T($objet, $chaine, $args = array(), $options = array()){
4935
-	$chaine = explode(':',$chaine);
4936
-	if ($t = _T($objet . ':' . end($chaine), $args, array_merge($options, array('force'=>false)))) {
4937
-		return $t;
4938
-	}
4939
-	$chaine = implode(':',$chaine);
4940
-	return _T($chaine, $args, $options);
4935
+    $chaine = explode(':',$chaine);
4936
+    if ($t = _T($objet . ':' . end($chaine), $args, array_merge($options, array('force'=>false)))) {
4937
+        return $t;
4938
+    }
4939
+    $chaine = implode(':',$chaine);
4940
+    return _T($chaine, $args, $options);
4941 4941
 }
4942 4942
 
4943 4943
 /**
@@ -4951,17 +4951,17 @@  discard block
 block discarded – undo
4951 4951
  * @return string      Code HTML
4952 4952
  */
4953 4953
 function insert_head_css_conditionnel($flux) {
4954
-	if (strpos($flux, '<!-- insert_head_css -->') === false
4955
-		and $p = strpos($flux, '<!-- insert_head -->')
4956
-	) {
4957
-		// plutot avant le premier js externe (jquery) pour etre non bloquant
4958
-		if ($p1 = stripos($flux, '<script src=') and $p1 < $p) {
4959
-			$p = $p1;
4960
-		}
4961
-		$flux = substr_replace($flux, pipeline('insert_head_css', '<!-- insert_head_css -->'), $p, 0);
4962
-	}
4954
+    if (strpos($flux, '<!-- insert_head_css -->') === false
4955
+        and $p = strpos($flux, '<!-- insert_head -->')
4956
+    ) {
4957
+        // plutot avant le premier js externe (jquery) pour etre non bloquant
4958
+        if ($p1 = stripos($flux, '<script src=') and $p1 < $p) {
4959
+            $p = $p1;
4960
+        }
4961
+        $flux = substr_replace($flux, pipeline('insert_head_css', '<!-- insert_head_css -->'), $p, 0);
4962
+    }
4963 4963
 
4964
-	return $flux;
4964
+    return $flux;
4965 4965
 }
4966 4966
 
4967 4967
 /**
@@ -4984,69 +4984,69 @@  discard block
 block discarded – undo
4984 4984
  * @return string
4985 4985
  */
4986 4986
 function produire_fond_statique($fond, $contexte = array(), $options = array(), $connect = '') {
4987
-	if (isset($contexte['format'])) {
4988
-		$extension = $contexte['format'];
4989
-		unset($contexte['format']);
4990
-	} else {
4991
-		$extension = 'html';
4992
-		if (preg_match(',[.](css|js|json|xml|svg)$,', $fond, $m)) {
4993
-			$extension = $m[1];
4994
-		}
4995
-	}
4996
-	// recuperer le contenu produit par le squelette
4997
-	$options['raw'] = true;
4998
-	$cache = recuperer_fond($fond, $contexte, $options, $connect);
4999
-
5000
-	// calculer le nom de la css
5001
-	$dir_var = sous_repertoire(_DIR_VAR, 'cache-' . $extension);
5002
-	$nom_safe = preg_replace(",\W,", '_', str_replace('.', '_', $fond));
5003
-	$contexte_implicite = calculer_contexte_implicite();
5004
-
5005
-	// par defaut on hash selon les contextes qui sont a priori moins variables
5006
-	// mais on peut hasher selon le contenu a la demande, si plusieurs contextes produisent un meme contenu
5007
-	// reduit la variabilite du nom et donc le nombre de css concatenees possibles in fine
5008
-	if (isset($options['hash_on_content']) and $options['hash_on_content']) {
5009
-		$hash = md5($contexte_implicite['host'] . '::'. $cache);
5010
-	}
5011
-	else {
5012
-		unset($contexte_implicite['notes']); // pas pertinent pour signaler un changeemnt de contenu pour des css/js
5013
-		ksort($contexte);
5014
-		$hash = md5($fond . json_encode($contexte_implicite) . json_encode($contexte) . $connect);
5015
-	}
5016
-	$filename = $dir_var . $extension . "dyn-$nom_safe-" . substr($hash, 0, 8) . ".$extension";
5017
-
5018
-	// mettre a jour le fichier si il n'existe pas
5019
-	// ou trop ancien
5020
-	// le dernier fichier produit est toujours suffixe par .last
5021
-	// et recopie sur le fichier cible uniquement si il change
5022
-	if (!file_exists($filename)
5023
-		or !file_exists($filename . ".last")
5024
-		or (isset($cache['lastmodified']) and $cache['lastmodified'] and filemtime($filename . ".last") < $cache['lastmodified'])
5025
-		or (defined('_VAR_MODE') and _VAR_MODE == 'recalcul')
5026
-	) {
5027
-		$contenu = $cache['texte'];
5028
-		// passer les urls en absolu si c'est une css
5029
-		if ($extension == "css") {
5030
-			$contenu = urls_absolues_css($contenu,
5031
-				test_espace_prive() ? generer_url_ecrire('accueil') : generer_url_public($fond));
5032
-		}
5033
-
5034
-		$comment = '';
5035
-		// ne pas insérer de commentaire sur certains formats
5036
-		if (!in_array($extension, ['json', 'xml', 'svg'])) {
5037
-			$comment = "/* #PRODUIRE{fond=$fond";
5038
-			foreach ($contexte as $k => $v) {
5039
-				$comment .= ",$k=$v";
5040
-			}
5041
-			// pas de date dans le commentaire car sinon ca invalide le md5 et force la maj
5042
-			// mais on peut mettre un md5 du contenu, ce qui donne un aperu rapide si la feuille a change ou non
5043
-			$comment .= "}\n   md5:" . md5($contenu) . " */\n";
5044
-		}
5045
-		// et ecrire le fichier si il change
5046
-		ecrire_fichier_calcule_si_modifie($filename, $comment . $contenu, false, true);
5047
-	}
5048
-
5049
-	return timestamp($filename);
4987
+    if (isset($contexte['format'])) {
4988
+        $extension = $contexte['format'];
4989
+        unset($contexte['format']);
4990
+    } else {
4991
+        $extension = 'html';
4992
+        if (preg_match(',[.](css|js|json|xml|svg)$,', $fond, $m)) {
4993
+            $extension = $m[1];
4994
+        }
4995
+    }
4996
+    // recuperer le contenu produit par le squelette
4997
+    $options['raw'] = true;
4998
+    $cache = recuperer_fond($fond, $contexte, $options, $connect);
4999
+
5000
+    // calculer le nom de la css
5001
+    $dir_var = sous_repertoire(_DIR_VAR, 'cache-' . $extension);
5002
+    $nom_safe = preg_replace(",\W,", '_', str_replace('.', '_', $fond));
5003
+    $contexte_implicite = calculer_contexte_implicite();
5004
+
5005
+    // par defaut on hash selon les contextes qui sont a priori moins variables
5006
+    // mais on peut hasher selon le contenu a la demande, si plusieurs contextes produisent un meme contenu
5007
+    // reduit la variabilite du nom et donc le nombre de css concatenees possibles in fine
5008
+    if (isset($options['hash_on_content']) and $options['hash_on_content']) {
5009
+        $hash = md5($contexte_implicite['host'] . '::'. $cache);
5010
+    }
5011
+    else {
5012
+        unset($contexte_implicite['notes']); // pas pertinent pour signaler un changeemnt de contenu pour des css/js
5013
+        ksort($contexte);
5014
+        $hash = md5($fond . json_encode($contexte_implicite) . json_encode($contexte) . $connect);
5015
+    }
5016
+    $filename = $dir_var . $extension . "dyn-$nom_safe-" . substr($hash, 0, 8) . ".$extension";
5017
+
5018
+    // mettre a jour le fichier si il n'existe pas
5019
+    // ou trop ancien
5020
+    // le dernier fichier produit est toujours suffixe par .last
5021
+    // et recopie sur le fichier cible uniquement si il change
5022
+    if (!file_exists($filename)
5023
+        or !file_exists($filename . ".last")
5024
+        or (isset($cache['lastmodified']) and $cache['lastmodified'] and filemtime($filename . ".last") < $cache['lastmodified'])
5025
+        or (defined('_VAR_MODE') and _VAR_MODE == 'recalcul')
5026
+    ) {
5027
+        $contenu = $cache['texte'];
5028
+        // passer les urls en absolu si c'est une css
5029
+        if ($extension == "css") {
5030
+            $contenu = urls_absolues_css($contenu,
5031
+                test_espace_prive() ? generer_url_ecrire('accueil') : generer_url_public($fond));
5032
+        }
5033
+
5034
+        $comment = '';
5035
+        // ne pas insérer de commentaire sur certains formats
5036
+        if (!in_array($extension, ['json', 'xml', 'svg'])) {
5037
+            $comment = "/* #PRODUIRE{fond=$fond";
5038
+            foreach ($contexte as $k => $v) {
5039
+                $comment .= ",$k=$v";
5040
+            }
5041
+            // pas de date dans le commentaire car sinon ca invalide le md5 et force la maj
5042
+            // mais on peut mettre un md5 du contenu, ce qui donne un aperu rapide si la feuille a change ou non
5043
+            $comment .= "}\n   md5:" . md5($contenu) . " */\n";
5044
+        }
5045
+        // et ecrire le fichier si il change
5046
+        ecrire_fichier_calcule_si_modifie($filename, $comment . $contenu, false, true);
5047
+    }
5048
+
5049
+    return timestamp($filename);
5050 5050
 }
5051 5051
 
5052 5052
 /**
@@ -5059,14 +5059,14 @@  discard block
 block discarded – undo
5059 5059
  *    $fichier auquel on a ajouté le timestamp
5060 5060
  */
5061 5061
 function timestamp($fichier) {
5062
-	if (!$fichier
5063
-		or !file_exists($fichier)
5064
-		or !$m = filemtime($fichier)
5065
-	) {
5066
-		return $fichier;
5067
-	}
5062
+    if (!$fichier
5063
+        or !file_exists($fichier)
5064
+        or !$m = filemtime($fichier)
5065
+    ) {
5066
+        return $fichier;
5067
+    }
5068 5068
 
5069
-	return "$fichier?$m";
5069
+    return "$fichier?$m";
5070 5070
 }
5071 5071
 
5072 5072
 /**
@@ -5076,11 +5076,11 @@  discard block
 block discarded – undo
5076 5076
  * @return string
5077 5077
  */
5078 5078
 function supprimer_timestamp($url) {
5079
-	if (strpos($url, "?") === false) {
5080
-		return $url;
5081
-	}
5079
+    if (strpos($url, "?") === false) {
5080
+        return $url;
5081
+    }
5082 5082
 
5083
-	return preg_replace(",\?[[:digit:]]+$,", "", $url);
5083
+    return preg_replace(",\?[[:digit:]]+$,", "", $url);
5084 5084
 }
5085 5085
 
5086 5086
 /**
@@ -5095,9 +5095,9 @@  discard block
 block discarded – undo
5095 5095
  * @return string
5096 5096
  */
5097 5097
 function filtre_nettoyer_titre_email_dist($titre) {
5098
-	include_spip('inc/envoyer_mail');
5098
+    include_spip('inc/envoyer_mail');
5099 5099
 
5100
-	return nettoyer_titre_email($titre);
5100
+    return nettoyer_titre_email($titre);
5101 5101
 }
5102 5102
 
5103 5103
 /**
@@ -5119,19 +5119,19 @@  discard block
 block discarded – undo
5119 5119
  * @return string
5120 5120
  */
5121 5121
 function filtre_chercher_rubrique_dist(
5122
-	$titre,
5123
-	$id_objet,
5124
-	$id_parent,
5125
-	$objet,
5126
-	$id_secteur,
5127
-	$restreint,
5128
-	$actionable = false,
5129
-	$retour_sans_cadre = false
5122
+    $titre,
5123
+    $id_objet,
5124
+    $id_parent,
5125
+    $objet,
5126
+    $id_secteur,
5127
+    $restreint,
5128
+    $actionable = false,
5129
+    $retour_sans_cadre = false
5130 5130
 ) {
5131
-	include_spip('inc/filtres_ecrire');
5131
+    include_spip('inc/filtres_ecrire');
5132 5132
 
5133
-	return chercher_rubrique($titre, $id_objet, $id_parent, $objet, $id_secteur, $restreint, $actionable,
5134
-		$retour_sans_cadre);
5133
+    return chercher_rubrique($titre, $id_objet, $id_parent, $objet, $id_secteur, $restreint, $actionable,
5134
+        $retour_sans_cadre);
5135 5135
 }
5136 5136
 
5137 5137
 /**
@@ -5160,56 +5160,56 @@  discard block
 block discarded – undo
5160 5160
  *     Chaîne vide si l'accès est autorisé
5161 5161
  */
5162 5162
 function sinon_interdire_acces($ok = false, $url = '', $statut = 0, $message = null) {
5163
-	if ($ok) {
5164
-		return '';
5165
-	}
5166
-
5167
-	// Vider tous les tampons
5168
-	$level = @ob_get_level();
5169
-	while ($level--) {
5170
-		@ob_end_clean();
5171
-	}
5172
-
5173
-	include_spip('inc/headers');
5174
-
5175
-	// S'il y a une URL, on redirige (si pas de statut, la fonction mettra 302 par défaut)
5176
-	if ($url) {
5177
-		redirige_par_entete($url, '', $statut);
5178
-	}
5179
-
5180
-	// ecriture simplifiee avec message en 3eme argument (= statut 403)
5181
-	if (!is_numeric($statut) and is_null($message)) {
5182
-		$message = $statut;
5183
-		$statut = 0;
5184
-	}
5185
-	if (!$message) {
5186
-		$message = '';
5187
-	}
5188
-	$statut = intval($statut);
5189
-
5190
-	// Si on est dans l'espace privé, on génère du 403 Forbidden par defaut ou du 404
5191
-	if (test_espace_prive()) {
5192
-		if (!$statut or !in_array($statut, array(404, 403))) {
5193
-			$statut = 403;
5194
-		}
5195
-		http_status(403);
5196
-		$echec = charger_fonction('403', 'exec');
5197
-		$echec($message);
5198
-	} else {
5199
-		// Sinon dans l'espace public on redirige vers une 404 par défaut, car elle toujours présente normalement
5200
-		if (!$statut) {
5201
-			$statut = 404;
5202
-		}
5203
-		// Dans tous les cas on modifie l'entité avec ce qui est demandé
5204
-		http_status($statut);
5205
-		// Si le statut est une erreur et qu'il n'y a pas de redirection on va chercher le squelette du même nom
5206
-		if ($statut >= 400) {
5207
-			echo recuperer_fond("$statut", array('erreur' => $message));
5208
-		}
5209
-	}
5210
-
5211
-
5212
-	exit;
5163
+    if ($ok) {
5164
+        return '';
5165
+    }
5166
+
5167
+    // Vider tous les tampons
5168
+    $level = @ob_get_level();
5169
+    while ($level--) {
5170
+        @ob_end_clean();
5171
+    }
5172
+
5173
+    include_spip('inc/headers');
5174
+
5175
+    // S'il y a une URL, on redirige (si pas de statut, la fonction mettra 302 par défaut)
5176
+    if ($url) {
5177
+        redirige_par_entete($url, '', $statut);
5178
+    }
5179
+
5180
+    // ecriture simplifiee avec message en 3eme argument (= statut 403)
5181
+    if (!is_numeric($statut) and is_null($message)) {
5182
+        $message = $statut;
5183
+        $statut = 0;
5184
+    }
5185
+    if (!$message) {
5186
+        $message = '';
5187
+    }
5188
+    $statut = intval($statut);
5189
+
5190
+    // Si on est dans l'espace privé, on génère du 403 Forbidden par defaut ou du 404
5191
+    if (test_espace_prive()) {
5192
+        if (!$statut or !in_array($statut, array(404, 403))) {
5193
+            $statut = 403;
5194
+        }
5195
+        http_status(403);
5196
+        $echec = charger_fonction('403', 'exec');
5197
+        $echec($message);
5198
+    } else {
5199
+        // Sinon dans l'espace public on redirige vers une 404 par défaut, car elle toujours présente normalement
5200
+        if (!$statut) {
5201
+            $statut = 404;
5202
+        }
5203
+        // Dans tous les cas on modifie l'entité avec ce qui est demandé
5204
+        http_status($statut);
5205
+        // Si le statut est une erreur et qu'il n'y a pas de redirection on va chercher le squelette du même nom
5206
+        if ($statut >= 400) {
5207
+            echo recuperer_fond("$statut", array('erreur' => $message));
5208
+        }
5209
+    }
5210
+
5211
+
5212
+    exit;
5213 5213
 }
5214 5214
 
5215 5215
 /**
@@ -5220,11 +5220,11 @@  discard block
 block discarded – undo
5220 5220
  * @return string
5221 5221
  */
5222 5222
 function filtre_compacte_dist($source, $format = null) {
5223
-	if (function_exists('compacte')) {
5224
-		return compacte($source, $format);
5225
-	}
5223
+    if (function_exists('compacte')) {
5224
+        return compacte($source, $format);
5225
+    }
5226 5226
 
5227
-	return $source;
5227
+    return $source;
5228 5228
 }
5229 5229
 
5230 5230
 
@@ -5236,31 +5236,31 @@  discard block
 block discarded – undo
5236 5236
  * @return string
5237 5237
  */
5238 5238
 function spip_affiche_mot_de_passe_masque($passe, $afficher_partiellement = false, $portion_pourcent = null) {
5239
-	$l = strlen($passe);
5240
-
5241
-	if ($l<=8 or !$afficher_partiellement){
5242
-		if (!$l) {
5243
-			return ''; // montrer qu'il y a pas de mot de passe si il y en a pas
5244
-		}
5245
-		return str_pad('',$afficher_partiellement ? $l : 16,'*');
5246
-	}
5247
-
5248
-	if (is_null($portion_pourcent)) {
5249
-		if (!defined('_SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT')) {
5250
-			define('_SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT', 20); // 20%
5251
-		}
5252
-		$portion_pourcent = _SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT;
5253
-	}
5254
-	if ($portion_pourcent >= 100) {
5255
-		return $passe;
5256
-	}
5257
-	$e = intval(ceil($l * $portion_pourcent / 100 / 2));
5258
-	$e = max($e, 0);
5259
-	$mid = str_pad('',$l-2*$e,'*');
5260
-	if ($e>0 and strlen($mid)>8){
5261
-		$mid = '***...***';
5262
-	}
5263
-	return substr($passe,0,$e) . $mid . ($e > 0 ? substr($passe,-$e) : '');
5239
+    $l = strlen($passe);
5240
+
5241
+    if ($l<=8 or !$afficher_partiellement){
5242
+        if (!$l) {
5243
+            return ''; // montrer qu'il y a pas de mot de passe si il y en a pas
5244
+        }
5245
+        return str_pad('',$afficher_partiellement ? $l : 16,'*');
5246
+    }
5247
+
5248
+    if (is_null($portion_pourcent)) {
5249
+        if (!defined('_SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT')) {
5250
+            define('_SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT', 20); // 20%
5251
+        }
5252
+        $portion_pourcent = _SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT;
5253
+    }
5254
+    if ($portion_pourcent >= 100) {
5255
+        return $passe;
5256
+    }
5257
+    $e = intval(ceil($l * $portion_pourcent / 100 / 2));
5258
+    $e = max($e, 0);
5259
+    $mid = str_pad('',$l-2*$e,'*');
5260
+    if ($e>0 and strlen($mid)>8){
5261
+        $mid = '***...***';
5262
+    }
5263
+    return substr($passe,0,$e) . $mid . ($e > 0 ? substr($passe,-$e) : '');
5264 5264
 }
5265 5265
 
5266 5266
 
@@ -5281,64 +5281,64 @@  discard block
 block discarded – undo
5281 5281
  */
5282 5282
 function identifiant_slug($texte, $type = '', $options = array()) {
5283 5283
 
5284
-	$original = $texte;
5285
-	$separateur = (isset($options['separateur'])?$options['separateur']:'_');
5286
-	$longueur_maxi = (isset($options['longueur_maxi'])?$options['longueur_maxi']:60);
5287
-	$longueur_mini = (isset($options['longueur_mini'])?$options['longueur_mini']:0);
5284
+    $original = $texte;
5285
+    $separateur = (isset($options['separateur'])?$options['separateur']:'_');
5286
+    $longueur_maxi = (isset($options['longueur_maxi'])?$options['longueur_maxi']:60);
5287
+    $longueur_mini = (isset($options['longueur_mini'])?$options['longueur_mini']:0);
5288 5288
 
5289
-	if (!function_exists('translitteration')) {
5290
-		include_spip('inc/charsets');
5291
-	}
5289
+    if (!function_exists('translitteration')) {
5290
+        include_spip('inc/charsets');
5291
+    }
5292 5292
 
5293
-	// pas de balise html
5294
-	if (strpos($texte, '<') !== false) {
5295
-		$texte = strip_tags($texte);
5296
-	}
5297
-	if (strpos($texte, '&') !== false) {
5298
-		$texte = unicode2charset($texte);
5299
-	}
5300
-	// On enlève les espaces indésirables
5301
-	$texte = trim($texte);
5293
+    // pas de balise html
5294
+    if (strpos($texte, '<') !== false) {
5295
+        $texte = strip_tags($texte);
5296
+    }
5297
+    if (strpos($texte, '&') !== false) {
5298
+        $texte = unicode2charset($texte);
5299
+    }
5300
+    // On enlève les espaces indésirables
5301
+    $texte = trim($texte);
5302 5302
 
5303
-	// On enlève les accents et cie
5304
-	$texte = translitteration($texte);
5303
+    // On enlève les accents et cie
5304
+    $texte = translitteration($texte);
5305 5305
 
5306
-	// On remplace tout ce qui n'est pas un mot par un séparateur
5307
-	$texte = preg_replace(',[\W_]+,ms', $separateur, $texte);
5306
+    // On remplace tout ce qui n'est pas un mot par un séparateur
5307
+    $texte = preg_replace(',[\W_]+,ms', $separateur, $texte);
5308 5308
 
5309
-	// nettoyer les doubles occurences du separateur si besoin
5310
-	while (strpos($texte, "$separateur$separateur") !== false) {
5311
-		$texte = str_replace("$separateur$separateur", $separateur, $texte);
5312
-	}
5309
+    // nettoyer les doubles occurences du separateur si besoin
5310
+    while (strpos($texte, "$separateur$separateur") !== false) {
5311
+        $texte = str_replace("$separateur$separateur", $separateur, $texte);
5312
+    }
5313 5313
 
5314
-	// pas de separateur au debut ni a la fin
5315
-	$texte = trim($texte, $separateur);
5314
+    // pas de separateur au debut ni a la fin
5315
+    $texte = trim($texte, $separateur);
5316 5316
 
5317
-	// en minuscules
5318
-	$texte = strtolower($texte);
5317
+    // en minuscules
5318
+    $texte = strtolower($texte);
5319 5319
 
5320
-	switch ($type) {
5321
-		case 'class':
5322
-		case 'id':
5323
-		case 'anchor':
5324
-			if (preg_match(',^\d,', $texte)) {
5325
-				$texte = substr($type, 0, 1).$texte;
5326
-			}
5327
-	}
5320
+    switch ($type) {
5321
+        case 'class':
5322
+        case 'id':
5323
+        case 'anchor':
5324
+            if (preg_match(',^\d,', $texte)) {
5325
+                $texte = substr($type, 0, 1).$texte;
5326
+            }
5327
+    }
5328 5328
 
5329
-	if (strlen($texte)>$longueur_maxi) {
5330
-		$texte = substr($texte, 0, $longueur_maxi);
5331
-	}
5329
+    if (strlen($texte)>$longueur_maxi) {
5330
+        $texte = substr($texte, 0, $longueur_maxi);
5331
+    }
5332 5332
 
5333
-	if (strlen($texte) < $longueur_mini and $longueur_mini < $longueur_maxi) {
5334
-		if (preg_match(',^\d,', $texte)) {
5335
-			$texte = ($type ? substr($type,0,1) : "s") . $texte;
5336
-		}
5337
-		$texte .= $separateur . md5($original);
5338
-		$texte = substr($texte, 0, $longueur_mini);
5339
-	}
5333
+    if (strlen($texte) < $longueur_mini and $longueur_mini < $longueur_maxi) {
5334
+        if (preg_match(',^\d,', $texte)) {
5335
+            $texte = ($type ? substr($type,0,1) : "s") . $texte;
5336
+        }
5337
+        $texte .= $separateur . md5($original);
5338
+        $texte = substr($texte, 0, $longueur_mini);
5339
+    }
5340 5340
 
5341
-	return $texte;
5341
+    return $texte;
5342 5342
 }
5343 5343
 
5344 5344
 
@@ -5359,14 +5359,14 @@  discard block
 block discarded – undo
5359 5359
  * @exemple `<:info_maximum|label_nettoyer:>`
5360 5360
  */
5361 5361
 function label_nettoyer(string $text, bool $ucfirst = true) : string {
5362
-	$label = rtrim($text, " : \t\n\r\0\x0B\xc2\xa0");
5363
-	if ($label and $label[-1] === ';') {
5364
-		$label = preg_replace("#(\&nbsp;)+$#", "", $label);
5365
-	}
5366
-	if ($ucfirst) {
5367
-		$label = spip_ucfirst($label);
5368
-	}
5369
-	return $label;
5362
+    $label = rtrim($text, " : \t\n\r\0\x0B\xc2\xa0");
5363
+    if ($label and $label[-1] === ';') {
5364
+        $label = preg_replace("#(\&nbsp;)+$#", "", $label);
5365
+    }
5366
+    if ($ucfirst) {
5367
+        $label = spip_ucfirst($label);
5368
+    }
5369
+    return $label;
5370 5370
 }
5371 5371
 
5372 5372
 /**
@@ -5379,8 +5379,8 @@  discard block
 block discarded – undo
5379 5379
  * @exemple `<:info_maximum|label_ponctuer:>`
5380 5380
  */
5381 5381
 function label_ponctuer(string $text, bool $ucfirst = true) : string {
5382
-	$label = label_nettoyer($text, $ucfirst);
5383
-	return _T('label_ponctuer', ['label' => $label]);
5382
+    $label = label_nettoyer($text, $ucfirst);
5383
+    return _T('label_ponctuer', ['label' => $label]);
5384 5384
 }
5385 5385
 
5386 5386
 
@@ -5393,19 +5393,19 @@  discard block
 block discarded – undo
5393 5393
  * @return array
5394 5394
  */
5395 5395
 function helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, $fonction) {
5396
-	if (!in_array($fonction, ['objet_lister_parents', 'objet_lister_enfants', 'objet_lister_parents_par_type', 'objet_lister_enfants_par_type'])) {
5397
-		return [];
5398
-	}
5396
+    if (!in_array($fonction, ['objet_lister_parents', 'objet_lister_enfants', 'objet_lister_parents_par_type', 'objet_lister_enfants_par_type'])) {
5397
+        return [];
5398
+    }
5399 5399
 
5400
-	// compatibilite signature inversee
5401
-	if (is_numeric($objet) and !is_numeric($id_objet)) {
5402
-		list($objet, $id_objet) = [$id_objet, $objet];
5403
-	}
5400
+    // compatibilite signature inversee
5401
+    if (is_numeric($objet) and !is_numeric($id_objet)) {
5402
+        list($objet, $id_objet) = [$id_objet, $objet];
5403
+    }
5404 5404
 
5405
-	if (!function_exists($fonction)) {
5406
-		include_spip('base/objets');
5407
-	}
5408
-	return $fonction($objet, $id_objet);
5405
+    if (!function_exists($fonction)) {
5406
+        include_spip('base/objets');
5407
+    }
5408
+    return $fonction($objet, $id_objet);
5409 5409
 }
5410 5410
 
5411 5411
 
@@ -5420,7 +5420,7 @@  discard block
 block discarded – undo
5420 5420
  * @return array
5421 5421
  */
5422 5422
 function filtre_objet_lister_parents_dist($objet, $id_objet) {
5423
-	return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_parents');
5423
+    return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_parents');
5424 5424
 }
5425 5425
 
5426 5426
 /**
@@ -5434,7 +5434,7 @@  discard block
 block discarded – undo
5434 5434
  * @return array
5435 5435
  */
5436 5436
 function filtre_objet_lister_parents_par_type_dist($objet, $id_objet) {
5437
-	return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_parents_par_type');
5437
+    return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_parents_par_type');
5438 5438
 }
5439 5439
 
5440 5440
 /**
@@ -5448,7 +5448,7 @@  discard block
 block discarded – undo
5448 5448
  * @return array
5449 5449
  */
5450 5450
 function filtre_objet_lister_enfants_dist($objet, $id_objet) {
5451
-	return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_enfants');
5451
+    return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_enfants');
5452 5452
 }
5453 5453
 
5454 5454
 /**
@@ -5462,6 +5462,6 @@  discard block
 block discarded – undo
5462 5462
  * @return array
5463 5463
  */
5464 5464
 function filtre_objet_lister_enfants_par_type_dist($objet, $id_objet) {
5465
-	return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_enfants_par_type');
5465
+    return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_enfants_par_type');
5466 5466
 }
5467 5467
 
Please login to merge, or discard this patch.
Spacing   +167 added lines, -168 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
 	}
95 95
 
96 96
 	include_fichiers_fonctions();
97
-	foreach (array('filtre_' . $fonc, 'filtre_' . $fonc . '_dist', $fonc) as $f) {
97
+	foreach (array('filtre_'.$fonc, 'filtre_'.$fonc.'_dist', $fonc) as $f) {
98 98
 		trouver_filtre_matrice($f); // charge des fichiers spécifiques éventuels
99 99
 		// fonction ou name\space\fonction
100 100
 		if (is_callable($f)) {
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
 	// affichage "GIT [master: abcdef]"
222 222
 	$commit = isset($desc['commit_short']) ? $desc['commit_short'] : $desc['commit'];
223 223
 	if ($desc['branch']) {
224
-		$commit = $desc['branch'] . ': ' . $commit;
224
+		$commit = $desc['branch'].': '.$commit;
225 225
 	}
226 226
 	return "{$desc['vcs']} [$commit]";
227 227
 }
@@ -240,9 +240,9 @@  discard block
 block discarded – undo
240 240
 	}
241 241
 
242 242
 	// version installee par GIT
243
-	if (lire_fichier($dir . '/.git/HEAD', $c)) {
243
+	if (lire_fichier($dir.'/.git/HEAD', $c)) {
244 244
 		$currentHead = trim(substr($c, 4));
245
-		if (lire_fichier($dir . '/.git/' . $currentHead, $hash)) {
245
+		if (lire_fichier($dir.'/.git/'.$currentHead, $hash)) {
246 246
 			return [
247 247
 				'vcs' => 'GIT',
248 248
 				'branch' => basename($currentHead),
@@ -269,8 +269,8 @@  discard block
 block discarded – undo
269 269
 		$dir = '.';
270 270
 	}
271 271
 	// version installee par SVN
272
-	if (file_exists($dir . '/.svn/wc.db') && class_exists('SQLite3')) {
273
-		$db = new SQLite3($dir . '/.svn/wc.db');
272
+	if (file_exists($dir.'/.svn/wc.db') && class_exists('SQLite3')) {
273
+		$db = new SQLite3($dir.'/.svn/wc.db');
274 274
 		$result = $db->query('SELECT changed_revision FROM nodes WHERE local_relpath = "" LIMIT 1');
275 275
 		if ($result) {
276 276
 			$row = $result->fetchArray();
@@ -288,12 +288,12 @@  discard block
 block discarded – undo
288 288
 
289 289
 // La matrice est necessaire pour ne filtrer _que_ des fonctions definies dans filtres_images
290 290
 // et laisser passer les fonctions personnelles baptisees image_...
291
-$GLOBALS['spip_matrice']['image_graver'] = true;//'inc/filtres_images_mini.php';
292
-$GLOBALS['spip_matrice']['image_select'] = true;//'inc/filtres_images_mini.php';
293
-$GLOBALS['spip_matrice']['image_reduire'] = true;//'inc/filtres_images_mini.php';
294
-$GLOBALS['spip_matrice']['image_reduire_par'] = true;//'inc/filtres_images_mini.php';
295
-$GLOBALS['spip_matrice']['image_passe_partout'] = true;//'inc/filtres_images_mini.php';
296
-$GLOBALS['spip_matrice']['image_recadre_avec_fallback'] = true;//'inc/filtres_images_mini.php';
291
+$GLOBALS['spip_matrice']['image_graver'] = true; //'inc/filtres_images_mini.php';
292
+$GLOBALS['spip_matrice']['image_select'] = true; //'inc/filtres_images_mini.php';
293
+$GLOBALS['spip_matrice']['image_reduire'] = true; //'inc/filtres_images_mini.php';
294
+$GLOBALS['spip_matrice']['image_reduire_par'] = true; //'inc/filtres_images_mini.php';
295
+$GLOBALS['spip_matrice']['image_passe_partout'] = true; //'inc/filtres_images_mini.php';
296
+$GLOBALS['spip_matrice']['image_recadre_avec_fallback'] = true; //'inc/filtres_images_mini.php';
297 297
 
298 298
 $GLOBALS['spip_matrice']['couleur_html_to_hex'] = 'inc/filtres_images_mini.php';
299 299
 $GLOBALS['spip_matrice']['couleur_hex_to_hsl'] = 'inc/filtres_images_mini.php';
@@ -452,8 +452,8 @@  discard block
 block discarded – undo
452 452
  */
453 453
 function filtre_debug($val, $key = null) {
454 454
 	$debug = (
455
-		is_null($key) ? '' : (var_export($key, true) . " = ")
456
-		) . var_export($val, true);
455
+		is_null($key) ? '' : (var_export($key, true)." = ")
456
+		).var_export($val, true);
457 457
 
458 458
 	include_spip('inc/autoriser');
459 459
 	if (autoriser('webmestre')) {
@@ -552,7 +552,7 @@  discard block
 block discarded – undo
552 552
 						if (preg_match(",this[.]src=['\"]([^'\"]+)['\"],ims", $mouseover, $match)) {
553 553
 							$srcover = $match[1];
554 554
 							array_shift($args);
555
-							array_unshift($args, "<img src='" . $match[1] . "' />");
555
+							array_unshift($args, "<img src='".$match[1]."' />");
556 556
 							$srcover_filter = call_user_func_array($filtre, $args);
557 557
 							$srcover_filter = extraire_attribut($srcover_filter, 'src');
558 558
 							$reduit = str_replace($srcover, $srcover_filter, $reduit);
@@ -623,14 +623,14 @@  discard block
 block discarded – undo
623 623
 				$hauteur_img[$src] = $srcHeight = $srcsize[1];
624 624
 			}
625 625
 		}
626
-		elseif(strpos($src, "<svg") !== false) {
626
+		elseif (strpos($src, "<svg") !== false) {
627 627
 			include_spip('inc/svg');
628
-			if ($attrs = svg_lire_attributs($src)){
628
+			if ($attrs = svg_lire_attributs($src)) {
629 629
 				list($width, $height, $viewbox) = svg_getimagesize_from_attr($attrs);
630
-				if (!$srcWidth){
630
+				if (!$srcWidth) {
631 631
 					$largeur_img[$src] = $srcWidth = $width;
632 632
 				}
633
-				if (!$srcHeight){
633
+				if (!$srcHeight) {
634 634
 					$hauteur_img[$src] = $srcHeight = $height;
635 635
 				}
636 636
 			}
@@ -914,7 +914,7 @@  discard block
 block discarded – undo
914 914
 	// " -> &quot; et tout ce genre de choses
915 915
 	$u = $GLOBALS['meta']['pcre_u'];
916 916
 	$texte = str_replace("&nbsp;", " ", $texte);
917
-	$texte = preg_replace('/\s{2,}/S' . $u, " ", $texte);
917
+	$texte = preg_replace('/\s{2,}/S'.$u, " ", $texte);
918 918
 	// ne pas echapper les sinqle quotes car certains outils de syndication gerent mal
919 919
 	$texte = entites_html($texte, false, false);
920 920
 	// mais bien echapper les double quotes !
@@ -974,7 +974,7 @@  discard block
 block discarded – undo
974 974
  **/
975 975
 function supprimer_numero($texte) {
976 976
 	return preg_replace(
977
-		",^[[:space:]]*([0-9]+)([.)]|" . chr(194) . '?' . chr(176) . ")[[:space:]]+,S",
977
+		",^[[:space:]]*([0-9]+)([.)]|".chr(194).'?'.chr(176).")[[:space:]]+,S",
978 978
 		"", $texte);
979 979
 }
980 980
 
@@ -999,7 +999,7 @@  discard block
 block discarded – undo
999 999
  **/
1000 1000
 function recuperer_numero($texte) {
1001 1001
 	if (preg_match(
1002
-		",^[[:space:]]*([0-9]+)([.)]|" . chr(194) . '?' . chr(176) . ")[[:space:]]+,S",
1002
+		",^[[:space:]]*([0-9]+)([.)]|".chr(194).'?'.chr(176).")[[:space:]]+,S",
1003 1003
 		$texte, $regs)) {
1004 1004
 		return strval($regs[1]);
1005 1005
 	} else {
@@ -1084,8 +1084,8 @@  discard block
 block discarded – undo
1084 1084
  **/
1085 1085
 function textebrut($texte) {
1086 1086
 	$u = $GLOBALS['meta']['pcre_u'];
1087
-	$texte = preg_replace('/\s+/S' . $u, " ", $texte);
1088
-	$texte = preg_replace("/<(p|br)( [^>]*)?" . ">/iS", "\n\n", $texte);
1087
+	$texte = preg_replace('/\s+/S'.$u, " ", $texte);
1088
+	$texte = preg_replace("/<(p|br)( [^>]*)?".">/iS", "\n\n", $texte);
1089 1089
 	$texte = preg_replace("/^\n+/", "", $texte);
1090 1090
 	$texte = preg_replace("/\n+$/", "", $texte);
1091 1091
 	$texte = preg_replace("/\n +/", "\n", $texte);
@@ -1113,7 +1113,7 @@  discard block
 block discarded – undo
1113 1113
 	if (preg_match_all(",(<a\s+[^>]*https?://[^>]*class=[\"']spip_(out|url)\b[^>]+>),imsS",
1114 1114
 		$texte, $liens, PREG_PATTERN_ORDER)) {
1115 1115
 		foreach ($liens[0] as $a) {
1116
-			$rel = 'noopener noreferrer ' . extraire_attribut($a, 'rel');
1116
+			$rel = 'noopener noreferrer '.extraire_attribut($a, 'rel');
1117 1117
 			$ablank = inserer_attribut($a, 'rel', $rel);
1118 1118
 			$ablank = inserer_attribut($ablank, 'target', '_blank');
1119 1119
 			$texte = str_replace($a, $ablank, $texte);
@@ -1138,7 +1138,7 @@  discard block
 block discarded – undo
1138 1138
 		foreach ($regs[0] as $a) {
1139 1139
 			$rel = extraire_attribut($a, "rel");
1140 1140
 			if (strpos($rel, "nofollow") === false) {
1141
-				$rel = "nofollow" . ($rel ? " $rel" : "");
1141
+				$rel = "nofollow".($rel ? " $rel" : "");
1142 1142
 				$anofollow = inserer_attribut($a, "rel", $rel);
1143 1143
 				$texte = str_replace($a, $anofollow, $texte);
1144 1144
 			}
@@ -1167,7 +1167,7 @@  discard block
 block discarded – undo
1167 1167
 	$u = $GLOBALS['meta']['pcre_u'];
1168 1168
 	$texte = preg_replace("@</p>@iS", "\n", $texte);
1169 1169
 	$texte = preg_replace("@<p\b.*>@UiS", "<br />", $texte);
1170
-	$texte = preg_replace("@^\s*<br />@S" . $u, "", $texte);
1170
+	$texte = preg_replace("@^\s*<br />@S".$u, "", $texte);
1171 1171
 
1172 1172
 	return $texte;
1173 1173
 }
@@ -1198,7 +1198,7 @@  discard block
 block discarded – undo
1198 1198
 		return $texte;
1199 1199
 	}
1200 1200
 	include_spip('inc/texte');
1201
-	$tag = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $texte) ?
1201
+	$tag = preg_match(',</?('._BALISES_BLOCS.')[>[:space:]],iS', $texte) ?
1202 1202
 		'div' : 'span';
1203 1203
 
1204 1204
 	return "<$tag style='word-wrap:break-word;'>$texte</$tag>";
@@ -1307,7 +1307,7 @@  discard block
 block discarded – undo
1307 1307
 function attribut_html($texte, $textebrut = true) {
1308 1308
 	$u = $GLOBALS['meta']['pcre_u'];
1309 1309
 	if ($textebrut) {
1310
-		$texte = preg_replace(array(",\n,", ",\s(?=\s),msS" . $u), array(" ", ""), textebrut($texte));
1310
+		$texte = preg_replace(array(",\n,", ",\s(?=\s),msS".$u), array(" ", ""), textebrut($texte));
1311 1311
 	}
1312 1312
 	$texte = texte_backend($texte);
1313 1313
 	$texte = str_replace(array("'", '"'), array('&#039;', '&#034;'), $texte);
@@ -1336,7 +1336,7 @@  discard block
 block discarded – undo
1336 1336
 	# un message pour abs_url
1337 1337
 	$GLOBALS['mode_abs_url'] = 'url';
1338 1338
 	$url = trim($url);
1339
-	$r = ",^(?:" . _PROTOCOLES_STD . '):?/?/?$,iS';
1339
+	$r = ",^(?:"._PROTOCOLES_STD.'):?/?/?$,iS';
1340 1340
 
1341 1341
 	return preg_match($r, $url) ? '' : ($entites ? entites_html($url) : $url);
1342 1342
 }
@@ -1538,14 +1538,14 @@  discard block
 block discarded – undo
1538 1538
 	if (strpos($texte, "<") !== false) {
1539 1539
 		include_spip('inc/lien');
1540 1540
 		if (defined('_PREG_MODELE')) {
1541
-			$preg_modeles = "@" . _PREG_MODELE . "@imsS";
1541
+			$preg_modeles = "@"._PREG_MODELE."@imsS";
1542 1542
 			$texte = echappe_html($texte, '', true, $preg_modeles);
1543 1543
 		}
1544 1544
 	}
1545 1545
 
1546 1546
 	$debut = '';
1547 1547
 	$suite = $texte;
1548
-	while ($t = strpos('-' . $suite, "\n", 1)) {
1548
+	while ($t = strpos('-'.$suite, "\n", 1)) {
1549 1549
 		$debut .= substr($suite, 0, $t - 1);
1550 1550
 		$suite = substr($suite, $t);
1551 1551
 		$car = substr($suite, 0, 1);
@@ -1562,11 +1562,11 @@  discard block
 block discarded – undo
1562 1562
 			$suite = substr($suite, strlen($regs[0]));
1563 1563
 		}
1564 1564
 	}
1565
-	$texte = $debut . $suite;
1565
+	$texte = $debut.$suite;
1566 1566
 
1567 1567
 	$texte = echappe_retour($texte);
1568 1568
 
1569
-	return $texte . $fin;
1569
+	return $texte.$fin;
1570 1570
 }
1571 1571
 
1572 1572
 
@@ -1627,7 +1627,7 @@  discard block
 block discarded – undo
1627 1627
 		}
1628 1628
 
1629 1629
 		foreach ($regs as $reg) {
1630
-			$cle = ($reg[1] ? $reg[1] . ':' : '') . $reg[2];
1630
+			$cle = ($reg[1] ? $reg[1].':' : '').$reg[2];
1631 1631
 			$desc = $traduire($cle, $lang, true);
1632 1632
 			$l = $desc->langue;
1633 1633
 			// si pas de traduction, on laissera l'écriture de l'idiome entier dans le texte.
@@ -1740,9 +1740,9 @@  discard block
 block discarded – undo
1740 1740
 					// il ne faut pas echapper en div si propre produit un seul paragraphe
1741 1741
 					include_spip('inc/texte');
1742 1742
 					$trad_propre = preg_replace(",(^<p[^>]*>|</p>$),Uims", "", propre($trad));
1743
-					$mode = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $trad_propre) ? 'div' : 'span';
1743
+					$mode = preg_match(',</?('._BALISES_BLOCS.')[>[:space:]],iS', $trad_propre) ? 'div' : 'span';
1744 1744
 					if ($mode === 'div') {
1745
-						$trad = rtrim($trad) . "\n\n";
1745
+						$trad = rtrim($trad)."\n\n";
1746 1746
 					}
1747 1747
 					$trad = code_echappement($trad, 'multi', false, $mode);
1748 1748
 					$trad = str_replace("'", '"', inserer_attribut($trad, 'lang', $l));
@@ -1936,7 +1936,7 @@  discard block
 block discarded – undo
1936 1936
 	if (is_array($balise)) {
1937 1937
 		array_walk(
1938 1938
 			$balise,
1939
-			function(&$a, $key, $t){
1939
+			function(&$a, $key, $t) {
1940 1940
 				$a = extraire_attribut($a, $t);
1941 1941
 			},
1942 1942
 			$attribut
@@ -2023,14 +2023,14 @@  discard block
 block discarded – undo
2023 2023
 
2024 2024
 	if ($old !== null) {
2025 2025
 		// Remplacer l'ancien attribut du meme nom
2026
-		$balise = $r[1] . $insert . $r[5];
2026
+		$balise = $r[1].$insert.$r[5];
2027 2027
 	} else {
2028 2028
 		// preferer une balise " />" (comme <img />)
2029 2029
 		if (preg_match(',/>,', $balise)) {
2030
-			$balise = preg_replace(",\s?/>,S", $insert . " />", $balise, 1);
2030
+			$balise = preg_replace(",\s?/>,S", $insert." />", $balise, 1);
2031 2031
 		} // sinon une balise <a ...> ... </a>
2032 2032
 		else {
2033
-			$balise = preg_replace(",\s?>,S", $insert . ">", $balise, 1);
2033
+			$balise = preg_replace(",\s?>,S", $insert.">", $balise, 1);
2034 2034
 		}
2035 2035
 	}
2036 2036
 
@@ -2063,7 +2063,7 @@  discard block
 block discarded – undo
2063 2063
  * @param string $operation
2064 2064
  * @return string
2065 2065
  */
2066
-function modifier_class($balise, $class, $operation='ajouter') {
2066
+function modifier_class($balise, $class, $operation = 'ajouter') {
2067 2067
 	if (is_string($class)) {
2068 2068
 		$class = explode(' ', trim($class));
2069 2069
 	}
@@ -2088,7 +2088,7 @@  discard block
 block discarded – undo
2088 2088
 				}
2089 2089
 				if (in_array($operation, ['ajouter', 'commuter'])
2090 2090
 					and !$is_class_presente) {
2091
-					$class_new = rtrim($class_new) . " " . $c;
2091
+					$class_new = rtrim($class_new)." ".$c;
2092 2092
 				}
2093 2093
 				elseif (in_array($operation, ['supprimer', 'commuter'])
2094 2094
 					and $is_class_presente) {
@@ -2116,7 +2116,7 @@  discard block
 block discarded – undo
2116 2116
  * @param string|array $class
2117 2117
  * @return string
2118 2118
  */
2119
-function ajouter_class($balise, $class){
2119
+function ajouter_class($balise, $class) {
2120 2120
 	return modifier_class($balise, $class, 'ajouter');
2121 2121
 }
2122 2122
 
@@ -2126,7 +2126,7 @@  discard block
 block discarded – undo
2126 2126
  * @param string|array $class
2127 2127
  * @return string
2128 2128
  */
2129
-function supprimer_class($balise, $class){
2129
+function supprimer_class($balise, $class) {
2130 2130
 	return modifier_class($balise, $class, 'supprimer');
2131 2131
 }
2132 2132
 
@@ -2137,7 +2137,7 @@  discard block
 block discarded – undo
2137 2137
  * @param string|array $class
2138 2138
  * @return string
2139 2139
  */
2140
-function commuter_class($balise, $class){
2140
+function commuter_class($balise, $class) {
2141 2141
 	return modifier_class($balise, $class, 'commuter');
2142 2142
 }
2143 2143
 
@@ -2157,8 +2157,8 @@  discard block
 block discarded – undo
2157 2157
 //
2158 2158
 // Quelques fonctions de calcul arithmetique
2159 2159
 //
2160
-function floatstr($a) { return str_replace(',','.',(string)floatval($a)); }
2161
-function strize($f, $a, $b) { return floatstr($f(floatstr($a),floatstr($b))); }
2160
+function floatstr($a) { return str_replace(',', '.', (string) floatval($a)); }
2161
+function strize($f, $a, $b) { return floatstr($f(floatstr($a), floatstr($b))); }
2162 2162
 
2163 2163
 /**
2164 2164
  * Additionne 2 nombres
@@ -2178,7 +2178,7 @@  discard block
 block discarded – undo
2178 2178
 function plus($a, $b) {
2179 2179
 	return $a + $b;
2180 2180
 }
2181
-function strplus($a, $b) {return strize('plus', $a, $b);}
2181
+function strplus($a, $b) {return strize('plus', $a, $b); }
2182 2182
 /**
2183 2183
  * Soustrait 2 nombres
2184 2184
  *
@@ -2197,7 +2197,7 @@  discard block
 block discarded – undo
2197 2197
 function moins($a, $b) {
2198 2198
 	return $a - $b;
2199 2199
 }
2200
-function strmoins($a, $b) {return strize('moins', $a, $b);}
2200
+function strmoins($a, $b) {return strize('moins', $a, $b); }
2201 2201
 
2202 2202
 /**
2203 2203
  * Multiplie 2 nombres
@@ -2218,7 +2218,7 @@  discard block
 block discarded – undo
2218 2218
 function mult($a, $b) {
2219 2219
 	return $a * $b;
2220 2220
 }
2221
-function strmult($a, $b) {return strize('mult', $a, $b);}
2221
+function strmult($a, $b) {return strize('mult', $a, $b); }
2222 2222
 
2223 2223
 /**
2224 2224
  * Divise 2 nombres
@@ -2239,7 +2239,7 @@  discard block
 block discarded – undo
2239 2239
 function div($a, $b) {
2240 2240
 	return $b ? $a / $b : 0;
2241 2241
 }
2242
-function strdiv($a, $b) {return strize('div', $a, $b);}
2242
+function strdiv($a, $b) {return strize('div', $a, $b); }
2243 2243
 
2244 2244
 /**
2245 2245
  * Retourne le modulo 2 nombres
@@ -2280,13 +2280,13 @@  discard block
 block discarded – undo
2280 2280
 	if (!defined('_TAGS_NOM_AUTEUR')) {
2281 2281
 		define('_TAGS_NOM_AUTEUR', '');
2282 2282
 	}
2283
-	$tags_acceptes = array_unique(explode(',', 'multi,' . _TAGS_NOM_AUTEUR));
2283
+	$tags_acceptes = array_unique(explode(',', 'multi,'._TAGS_NOM_AUTEUR));
2284 2284
 	foreach ($tags_acceptes as $tag) {
2285 2285
 		if (strlen($tag)) {
2286
-			$remp1[] = '<' . trim($tag) . '>';
2287
-			$remp1[] = '</' . trim($tag) . '>';
2288
-			$remp2[] = '\x60' . trim($tag) . '\x61';
2289
-			$remp2[] = '\x60/' . trim($tag) . '\x61';
2286
+			$remp1[] = '<'.trim($tag).'>';
2287
+			$remp1[] = '</'.trim($tag).'>';
2288
+			$remp2[] = '\x60'.trim($tag).'\x61';
2289
+			$remp2[] = '\x60/'.trim($tag).'\x61';
2290 2290
 		}
2291 2291
 	}
2292 2292
 	$v_nom = str_replace($remp2, $remp1, supprimer_tags(str_replace($remp1, $remp2, $nom)));
@@ -2336,7 +2336,7 @@  discard block
 block discarded – undo
2336 2336
 			$s[] = preg_replace(',>[^<]+</a>,S',
2337 2337
 				'>'
2338 2338
 				. http_img_pack('attachment-16.png', $t,
2339
-					'title="' . attribut_html($t) . '"')
2339
+					'title="'.attribut_html($t).'"')
2340 2340
 				. '</a>', $tag);
2341 2341
 		}
2342 2342
 	}
@@ -2397,10 +2397,10 @@  discard block
 block discarded – undo
2397 2397
 	$fichier = basename($url);
2398 2398
 
2399 2399
 	return '<a rel="enclosure"'
2400
-	. ($url ? ' href="' . spip_htmlspecialchars($url) . '"' : '')
2401
-	. ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '')
2402
-	. ($length ? ' title="' . spip_htmlspecialchars($length) . '"' : '')
2403
-	. '>' . $fichier . '</a>';
2400
+	. ($url ? ' href="'.spip_htmlspecialchars($url).'"' : '')
2401
+	. ($type ? ' type="'.spip_htmlspecialchars($type).'"' : '')
2402
+	. ($length ? ' title="'.spip_htmlspecialchars($length).'"' : '')
2403
+	. '>'.$fichier.'</a>';
2404 2404
 }
2405 2405
 
2406 2406
 /**
@@ -2428,9 +2428,9 @@  discard block
 block discarded – undo
2428 2428
 			} # vieux data
2429 2429
 			$fichier = basename($url);
2430 2430
 			$enclosures[] = '<enclosure'
2431
-				. ($url ? ' url="' . spip_htmlspecialchars($url) . '"' : '')
2432
-				. ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '')
2433
-				. ($length ? ' length="' . $length . '"' : '')
2431
+				. ($url ? ' url="'.spip_htmlspecialchars($url).'"' : '')
2432
+				. ($type ? ' type="'.spip_htmlspecialchars($type).'"' : '')
2433
+				. ($length ? ' length="'.$length.'"' : '')
2434 2434
 				. ' />';
2435 2435
 		}
2436 2436
 	}
@@ -2456,7 +2456,7 @@  discard block
 block discarded – undo
2456 2456
 		if (extraire_attribut($e, 'rel') == 'tag') {
2457 2457
 			$subjects .= '<dc:subject>'
2458 2458
 				. texte_backend(textebrut($e))
2459
-				. '</dc:subject>' . "\n";
2459
+				. '</dc:subject>'."\n";
2460 2460
 		}
2461 2461
 	}
2462 2462
 
@@ -2492,7 +2492,7 @@  discard block
 block discarded – undo
2492 2492
 	if (is_array($texte)) {
2493 2493
 		array_walk(
2494 2494
 			$texte,
2495
-			function(&$a, $key, $t){
2495
+			function(&$a, $key, $t) {
2496 2496
 				$a = extraire_balise($a, $t);
2497 2497
 			},
2498 2498
 			$tag
@@ -2536,7 +2536,7 @@  discard block
 block discarded – undo
2536 2536
 	if (is_array($texte)) {
2537 2537
 		array_walk(
2538 2538
 			$texte,
2539
-			function(&$a, $key, $t){
2539
+			function(&$a, $key, $t) {
2540 2540
 				$a = extraire_balises($a, $t);
2541 2541
 			},
2542 2542
 			$tag
@@ -2662,7 +2662,7 @@  discard block
 block discarded – undo
2662 2662
 		if ($fond != '404') {
2663 2663
 			$contexte = array_shift($p);
2664 2664
 			$contexte['page'] = $fond;
2665
-			$action = preg_replace('/([?]' . preg_quote($fond) . '[^&=]*[0-9]+)(&|$)/', '?&', $action);
2665
+			$action = preg_replace('/([?]'.preg_quote($fond).'[^&=]*[0-9]+)(&|$)/', '?&', $action);
2666 2666
 		}
2667 2667
 	}
2668 2668
 	// defaire ce qu'a injecte urls_decoder_url : a revoir en modifiant la signature de urls_decoder_url
@@ -2717,9 +2717,9 @@  discard block
 block discarded – undo
2717 2717
 			. '"'
2718 2718
 			. (is_null($val)
2719 2719
 				? ''
2720
-				: ' value="' . entites_html($val) . '"'
2720
+				: ' value="'.entites_html($val).'"'
2721 2721
 			)
2722
-			. ' type="hidden"' . "\n/>";
2722
+			. ' type="hidden"'."\n/>";
2723 2723
 	}
2724 2724
 
2725 2725
 	return join("", $hidden);
@@ -2830,7 +2830,7 @@  discard block
 block discarded – undo
2830 2830
 	return preg_replace_callback(
2831 2831
 		",url\s*\(\s*['\"]?([^'\"/#\s][^:]*)['\"]?\s*\),Uims",
2832 2832
 		function($x) use ($path) {
2833
-			return "url('" . suivre_lien($path, $x[1]) . "')";
2833
+			return "url('".suivre_lien($path, $x[1])."')";
2834 2834
 		},
2835 2835
 		$contenu
2836 2836
 	);
@@ -2892,14 +2892,14 @@  discard block
 block discarded – undo
2892 2892
 	) {
2893 2893
 		$distant = true;
2894 2894
 		$cssf = parse_url($css);
2895
-		$cssf = $cssf['path'] . ($cssf['query'] ? "?" . $cssf['query'] : "");
2895
+		$cssf = $cssf['path'].($cssf['query'] ? "?".$cssf['query'] : "");
2896 2896
 		$cssf = preg_replace(',[?:&=],', "_", $cssf);
2897 2897
 	} else {
2898 2898
 		$distant = false;
2899 2899
 		$cssf = $css;
2900 2900
 		// 1. regarder d'abord si un fichier avec la bonne direction n'est pas aussi
2901 2901
 		//propose (rien a faire dans ce cas)
2902
-		$f = preg_replace(',(_rtl)?\.css$,i', '_' . $ndir . '.css', $css);
2902
+		$f = preg_replace(',(_rtl)?\.css$,i', '_'.$ndir.'.css', $css);
2903 2903
 		if (@file_exists($f)) {
2904 2904
 			return $f;
2905 2905
 		}
@@ -2909,7 +2909,7 @@  discard block
 block discarded – undo
2909 2909
 	$dir_var = sous_repertoire(_DIR_VAR, 'cache-css');
2910 2910
 	$f = $dir_var
2911 2911
 		. preg_replace(',.*/(.*?)(_rtl)?\.css,', '\1', $cssf)
2912
-		. '.' . substr(md5($cssf), 0, 4) . '_' . $ndir . '.css';
2912
+		. '.'.substr(md5($cssf), 0, 4).'_'.$ndir.'.css';
2913 2913
 
2914 2914
 	// la css peut etre distante (url absolue !)
2915 2915
 	if ($distant) {
@@ -2954,8 +2954,8 @@  discard block
 block discarded – undo
2954 2954
 		} // si la css_direction commence par $dir_var on la fait passer pour une absolue
2955 2955
 		elseif (substr($css_direction, 0, strlen($dir_var)) == $dir_var) {
2956 2956
 			$css_direction = substr($css_direction, strlen($dir_var));
2957
-			$src_faux_abs["/@@@@@@/" . $css_direction] = $css_direction;
2958
-			$css_direction = "/@@@@@@/" . $css_direction;
2957
+			$src_faux_abs["/@@@@@@/".$css_direction] = $css_direction;
2958
+			$css_direction = "/@@@@@@/".$css_direction;
2959 2959
 		}
2960 2960
 		$src[] = $regs[0][$k];
2961 2961
 		$src_direction_css[] = str_replace($import_css, $css_direction, $regs[0][$k]);
@@ -3004,7 +3004,7 @@  discard block
 block discarded – undo
3004 3004
 
3005 3005
 	$f = basename($css, '.css');
3006 3006
 	$f = sous_repertoire(_DIR_VAR, 'cache-css')
3007
-		. preg_replace(",(.*?)(_rtl|_ltr)?$,", "\\1-urlabs-" . substr(md5("$css-urlabs"), 0, 4) . "\\2", $f)
3007
+		. preg_replace(",(.*?)(_rtl|_ltr)?$,", "\\1-urlabs-".substr(md5("$css-urlabs"), 0, 4)."\\2", $f)
3008 3008
 		. '.css';
3009 3009
 
3010 3010
 	if ((@filemtime($f) > @filemtime($css)) and (_VAR_MODE != 'recalcul')) {
@@ -3013,7 +3013,7 @@  discard block
 block discarded – undo
3013 3013
 
3014 3014
 	if ($url_absolue_css == $css) {
3015 3015
 		if (strncmp($GLOBALS['meta']['adresse_site'], $css, $l = strlen($GLOBALS['meta']['adresse_site'])) != 0
3016
-			or !lire_fichier(_DIR_RACINE . substr($css, $l), $contenu)
3016
+			or !lire_fichier(_DIR_RACINE.substr($css, $l), $contenu)
3017 3017
 		) {
3018 3018
 			include_spip('inc/distant');
3019 3019
 			$contenu = recuperer_url($css);
@@ -3125,7 +3125,7 @@  discard block
 block discarded – undo
3125 3125
 	$expression = str_replace("\/", "/", $expression);
3126 3126
 	$expression = str_replace("/", "\/", $expression);
3127 3127
 
3128
-	if (preg_match('/' . $expression . '/' . $modif, $texte, $r)) {
3128
+	if (preg_match('/'.$expression.'/'.$modif, $texte, $r)) {
3129 3129
 		if (isset($r[$capte])) {
3130 3130
 			return $r[$capte];
3131 3131
 		} else {
@@ -3163,7 +3163,7 @@  discard block
 block discarded – undo
3163 3163
 	$expression = str_replace("\/", "/", $expression);
3164 3164
 	$expression = str_replace("/", "\/", $expression);
3165 3165
 
3166
-	return preg_replace('/' . $expression . '/' . $modif, $replace, $texte);
3166
+	return preg_replace('/'.$expression.'/'.$modif, $replace, $texte);
3167 3167
 }
3168 3168
 
3169 3169
 
@@ -3182,7 +3182,7 @@  discard block
 block discarded – undo
3182 3182
 function traiter_doublons_documents(&$doublons, $letexte) {
3183 3183
 
3184 3184
 	// Verifier dans le texte & les notes (pas beau, helas)
3185
-	$t = $letexte . $GLOBALS['les_notes'];
3185
+	$t = $letexte.$GLOBALS['les_notes'];
3186 3186
 
3187 3187
 	if (strstr($t, 'spip_document_') // evite le preg_match_all si inutile
3188 3188
 		and preg_match_all(
@@ -3192,7 +3192,7 @@  discard block
 block discarded – undo
3192 3192
 		if (!isset($doublons['documents'])) {
3193 3193
 			$doublons['documents'] = "";
3194 3194
 		}
3195
-		$doublons['documents'] .= "," . join(',', $matches[1]);
3195
+		$doublons['documents'] .= ",".join(',', $matches[1]);
3196 3196
 	}
3197 3197
 
3198 3198
 	return $letexte;
@@ -3249,7 +3249,7 @@  discard block
 block discarded – undo
3249 3249
 	if ($env) {
3250 3250
 		foreach ($env as $i => $j) {
3251 3251
 			if (is_string($j) and !in_array($i, $ignore_params)) {
3252
-				$texte .= "<param name='" . attribut_html($i) . "'\n\tvalue='" . attribut_html($j) . "' />";
3252
+				$texte .= "<param name='".attribut_html($i)."'\n\tvalue='".attribut_html($j)."' />";
3253 3253
 			}
3254 3254
 		}
3255 3255
 	}
@@ -3288,7 +3288,7 @@  discard block
 block discarded – undo
3288 3288
 	if ($env) {
3289 3289
 		foreach ($env as $i => $j) {
3290 3290
 			if (is_string($j) and !in_array($i, $ignore_params)) {
3291
-				$texte .= attribut_html($i) . "='" . attribut_html($j) . "' ";
3291
+				$texte .= attribut_html($i)."='".attribut_html($j)."' ";
3292 3292
 			}
3293 3293
 		}
3294 3294
 	}
@@ -3361,9 +3361,9 @@  discard block
 block discarded – undo
3361 3361
 	// on peut fournir une icone generique -xx.svg qui fera le job dans toutes les tailles, et qui est prioritaire sur le png
3362 3362
 	// si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png
3363 3363
 	if (preg_match(',-(\d+)[.](png|gif|svg)$,', $img_file, $m)
3364
-	  and $variante_svg_generique = substr($img_file, 0, -strlen($m[0])) . "-xx.svg"
3364
+	  and $variante_svg_generique = substr($img_file, 0, -strlen($m[0]))."-xx.svg"
3365 3365
 	  and file_exists($variante_svg_generique)) {
3366
-		if ($variante_svg_size = substr($variante_svg_generique,0,-6) . $m[1] . ".svg" and file_exists($variante_svg_size)) {
3366
+		if ($variante_svg_size = substr($variante_svg_generique, 0, -6).$m[1].".svg" and file_exists($variante_svg_size)) {
3367 3367
 			$img_file = $variante_svg_size;
3368 3368
 		}
3369 3369
 		else {
@@ -3394,13 +3394,13 @@  discard block
 block discarded – undo
3394 3394
 
3395 3395
 	$img_file = $img;
3396 3396
 	if ($p = strpos($img_file, '?')) {
3397
-		$img_file = substr($img_file,0, $p);
3397
+		$img_file = substr($img_file, 0, $p);
3398 3398
 	}
3399 3399
 	if (!isset($options['chemin_image']) or $options['chemin_image'] == true) {
3400 3400
 		$img_file = chemin_image($img);
3401 3401
 	}
3402 3402
 	else {
3403
-		if (!isset($options['variante_svg_si_possible']) or $options['variante_svg_si_possible'] == true){
3403
+		if (!isset($options['variante_svg_si_possible']) or $options['variante_svg_si_possible'] == true) {
3404 3404
 			$img_file = http_img_variante_svg_si_possible($img_file);
3405 3405
 		}
3406 3406
 	}
@@ -3420,7 +3420,7 @@  discard block
 block discarded – undo
3420 3420
 				return "";
3421 3421
 			}
3422 3422
 		}
3423
-		$atts .= " width='" . $largeur . "' height='" . $hauteur . "'";
3423
+		$atts .= " width='".$largeur."' height='".$hauteur."'";
3424 3424
 	}
3425 3425
 
3426 3426
 	if (file_exists($img_file)) {
@@ -3429,15 +3429,15 @@  discard block
 block discarded – undo
3429 3429
 	if ($alt === false) {
3430 3430
 		$alt = '';
3431 3431
 	}
3432
-	elseif($alt or $alt==='') {
3432
+	elseif ($alt or $alt === '') {
3433 3433
 		$alt = " alt='".attribut_html($alt)."'";
3434 3434
 	}
3435 3435
 	else {
3436 3436
 		$alt = " alt='".attribut_html($title)."'";
3437 3437
 	}
3438 3438
 	return "<img src='$img_file'$alt"
3439
-	. ($title ? ' title="' . attribut_html($title) . '"' : '')
3440
-	. " " . ltrim($atts)
3439
+	. ($title ? ' title="'.attribut_html($title).'"' : '')
3440
+	. " ".ltrim($atts)
3441 3441
 	. " />";
3442 3442
 }
3443 3443
 
@@ -3449,12 +3449,12 @@  discard block
 block discarded – undo
3449 3449
  * @param string $size
3450 3450
  * @return string
3451 3451
  */
3452
-function http_style_background($img, $att = '', $size=null) {
3453
-	if ($size and is_numeric($size)){
3454
-		$size = trim($size) . "px";
3452
+function http_style_background($img, $att = '', $size = null) {
3453
+	if ($size and is_numeric($size)) {
3454
+		$size = trim($size)."px";
3455 3455
 	}
3456
-	return " style='background" .
3457
-		($att ? "" : "-image") . ": url(\"" . chemin_image($img) . "\")" . ($att ? (' ' . $att) : '') . ";"
3456
+	return " style='background".
3457
+		($att ? "" : "-image").": url(\"".chemin_image($img)."\")".($att ? (' '.$att) : '').";"
3458 3458
 		. ($size ? "background-size:{$size};" : '')
3459 3459
 		. "'";
3460 3460
 }
@@ -3480,7 +3480,7 @@  discard block
 block discarded – undo
3480 3480
 			$args[] = $maybe_size;
3481 3481
 			$maybe_size = null;
3482 3482
 		}
3483
-		while (count($args)<2) {
3483
+		while (count($args) < 2) {
3484 3484
 			$args[] = null; // default alt or class
3485 3485
 		}
3486 3486
 		$args[] = $maybe_size;
@@ -3490,7 +3490,7 @@  discard block
 block discarded – undo
3490 3490
 
3491 3491
 function helper_filtre_balise_img_svg_size($img, $size) {
3492 3492
 	// si size est de la forme '@2x' c'est un coeff multiplicateur sur la densite
3493
-	if (strpos($size, '@') === 0 and substr($size,-1) === 'x') {
3493
+	if (strpos($size, '@') === 0 and substr($size, -1) === 'x') {
3494 3494
 		$coef = floatval(substr($size, 1, -1));
3495 3495
 		list($h, $w) = taille_image($img);
3496 3496
 		$height = intval(round($h / $coef));
@@ -3545,7 +3545,7 @@  discard block
 block discarded – undo
3545 3545
  * @return string
3546 3546
  *     Code HTML de la balise IMG
3547 3547
  */
3548
-function filtre_balise_img_dist($img, $alt = '', $class = null, $size=null) {
3548
+function filtre_balise_img_dist($img, $alt = '', $class = null, $size = null) {
3549 3549
 
3550 3550
 	list($alt, $class, $size) = helper_filtre_balise_img_svg_arguments($alt, $class, $size);
3551 3551
 
@@ -3564,7 +3564,7 @@  discard block
 block discarded – undo
3564 3564
 		}
3565 3565
 	}
3566 3566
 	else {
3567
-		$img = http_img_pack($img, $alt, $class ? " class='" . attribut_html($class) . "'" : '', '',
3567
+		$img = http_img_pack($img, $alt, $class ? " class='".attribut_html($class)."'" : '', '',
3568 3568
 				array('chemin_image' => false, 'utiliser_suffixe_size' => false));
3569 3569
 		if (is_null($alt)) {
3570 3570
 			$img = vider_attribut($img, 'alt');
@@ -3610,16 +3610,16 @@  discard block
 block discarded – undo
3610 3610
  * @return string
3611 3611
  *     Code HTML de la balise SVG
3612 3612
  */
3613
-function filtre_balise_svg_dist($img, $alt = '', $class = null, $size=null) {
3613
+function filtre_balise_svg_dist($img, $alt = '', $class = null, $size = null) {
3614 3614
 
3615 3615
 	$img = trim($img);
3616 3616
 	$img_file = $img;
3617
-	if (strpos($img, '<svg') === false){
3618
-		if ($p = strpos($img_file, '?')){
3617
+	if (strpos($img, '<svg') === false) {
3618
+		if ($p = strpos($img_file, '?')) {
3619 3619
 			$img_file = substr($img_file, 0, $p);
3620 3620
 		}
3621 3621
 
3622
-		if (!$img_file or !$svg = file_get_contents($img_file)){
3622
+		if (!$img_file or !$svg = file_get_contents($img_file)) {
3623 3623
 			return '';
3624 3624
 		}
3625 3625
 	}
@@ -3634,7 +3634,7 @@  discard block
 block discarded – undo
3634 3634
 	$balise_svg_source = $balise_svg;
3635 3635
 
3636 3636
 	// entete XML à supprimer
3637
-	$svg = preg_replace(',^\s*<\?xml[^>]*\?' . '>,', '', $svg);
3637
+	$svg = preg_replace(',^\s*<\?xml[^>]*\?'.'>,', '', $svg);
3638 3638
 
3639 3639
 	// IE est toujours mon ami
3640 3640
 	$balise_svg = inserer_attribut($balise_svg, 'focusable', 'false');
@@ -3650,11 +3650,11 @@  discard block
 block discarded – undo
3650 3650
 	}
3651 3651
 
3652 3652
 	// regler le alt
3653
-	if ($alt){
3653
+	if ($alt) {
3654 3654
 		$balise_svg = inserer_attribut($balise_svg, 'role', 'img');
3655
-		$id = "img-svg-title-" . substr(md5("$img_file:$svg:$alt"),0,4);
3655
+		$id = "img-svg-title-".substr(md5("$img_file:$svg:$alt"), 0, 4);
3656 3656
 		$balise_svg = inserer_attribut($balise_svg, 'aria-labelledby', $id);
3657
-		$title = "<title id=\"$id\">" . entites_html($alt)."</title>\n";
3657
+		$title = "<title id=\"$id\">".entites_html($alt)."</title>\n";
3658 3658
 		$balise_svg .= $title;
3659 3659
 	}
3660 3660
 	else {
@@ -3701,7 +3701,7 @@  discard block
 block discarded – undo
3701 3701
 	$texte = '';
3702 3702
 	if (is_array($tableau)) {
3703 3703
 		foreach ($tableau as $k => $v) {
3704
-			$res = recuperer_fond('modeles/' . $modele,
3704
+			$res = recuperer_fond('modeles/'.$modele,
3705 3705
 				array_merge(array('cle' => $k), (is_array($v) ? $v : array('valeur' => $v)))
3706 3706
 			);
3707 3707
 			$texte .= $res;
@@ -3878,7 +3878,7 @@  discard block
 block discarded – undo
3878 3878
 	}
3879 3879
 
3880 3880
 	$c = serialize($c);
3881
-	$cle = calculer_cle_action($form . $c);
3881
+	$cle = calculer_cle_action($form.$c);
3882 3882
 	$c = "$cle:$c";
3883 3883
 
3884 3884
 	// on ne stocke pas les contextes dans des fichiers en cache
@@ -3935,15 +3935,15 @@  discard block
 block discarded – undo
3935 3935
 	}
3936 3936
 	// toujours encoder l'url source dans le bloc ajax
3937 3937
 	$r = self();
3938
-	$r = ' data-origin="' . $r . '"';
3938
+	$r = ' data-origin="'.$r.'"';
3939 3939
 	$class = 'ajaxbloc';
3940 3940
 	if ($ajaxid and is_string($ajaxid)) {
3941 3941
 		// ajaxid est normalement conforme a un nom de classe css
3942 3942
 		// on ne verifie pas la conformite, mais on passe entites_html par dessus par precaution
3943
-		$class .= ' ajax-id-' . entites_html($ajaxid);
3943
+		$class .= ' ajax-id-'.entites_html($ajaxid);
3944 3944
 	}
3945 3945
 
3946
-	return "<div class='$class' " . "data-ajax-env='$env'$r>\n$emboite</div><!--ajaxbloc-->\n";
3946
+	return "<div class='$class' "."data-ajax-env='$env'$r>\n$emboite</div><!--ajaxbloc-->\n";
3947 3947
 }
3948 3948
 
3949 3949
 /**
@@ -3982,11 +3982,11 @@  discard block
 block discarded – undo
3982 3982
 	// extraire la signature en debut de contexte
3983 3983
 	// et la verifier avant de deserializer
3984 3984
 	// format : signature:donneesserializees
3985
-	if ($p = strpos($c,":")){
3986
-		$cle = substr($c,0,$p);
3987
-		$c = substr($c,$p+1);
3985
+	if ($p = strpos($c, ":")) {
3986
+		$cle = substr($c, 0, $p);
3987
+		$c = substr($c, $p + 1);
3988 3988
 
3989
-		if ($cle == calculer_cle_action($form . $c)) {
3989
+		if ($cle == calculer_cle_action($form.$c)) {
3990 3990
 			$env = @unserialize($c);
3991 3991
 			return $env;
3992 3992
 		}
@@ -4092,24 +4092,24 @@  discard block
 block discarded – undo
4092 4092
 		$att = "";
4093 4093
 		// si $on passe la balise et optionnelement une ou ++classe
4094 4094
 		// a.active span.selected.active etc....
4095
-		if (is_string($on) and (strncmp($on, 'a', 1)==0 or strncmp($on, 'span', 4)==0 or strncmp($on, 'strong', 6)==0)){
4095
+		if (is_string($on) and (strncmp($on, 'a', 1) == 0 or strncmp($on, 'span', 4) == 0 or strncmp($on, 'strong', 6) == 0)) {
4096 4096
 			$on = explode(".", $on);
4097 4097
 			// on verifie que c'est exactement une des 3 balises a, span ou strong
4098
-			if (in_array(reset($on), array('a', 'span', 'strong'))){
4098
+			if (in_array(reset($on), array('a', 'span', 'strong'))) {
4099 4099
 				$bal = array_shift($on);
4100 4100
 				$class = implode(" ", $on);
4101
-				if ($bal=="a"){
4101
+				if ($bal == "a") {
4102 4102
 					$att = 'href="#" ';
4103 4103
 				}
4104 4104
 			}
4105 4105
 		}
4106
-		$att .= 'class="' . ($class ? attribut_html($class) . ' ' : '') . (defined('_LIEN_OU_EXPOSE_CLASS_ON') ? _LIEN_OU_EXPOSE_CLASS_ON : 'on') . '"';
4106
+		$att .= 'class="'.($class ? attribut_html($class).' ' : '').(defined('_LIEN_OU_EXPOSE_CLASS_ON') ? _LIEN_OU_EXPOSE_CLASS_ON : 'on').'"';
4107 4107
 	} else {
4108 4108
 		$bal = 'a';
4109 4109
 		$att = "href='$url'"
4110
-			. ($title ? " title='" . attribut_html($title) . "'" : '')
4111
-			. ($class ? " class='" . attribut_html($class) . "'" : '')
4112
-			. ($rel ? " rel='" . attribut_html($rel) . "'" : '')
4110
+			. ($title ? " title='".attribut_html($title)."'" : '')
4111
+			. ($class ? " class='".attribut_html($class)."'" : '')
4112
+			. ($rel ? " rel='".attribut_html($rel)."'" : '')
4113 4113
 			. $evt;
4114 4114
 	}
4115 4115
 	if ($libelle === null) {
@@ -4244,7 +4244,7 @@  discard block
 block discarded – undo
4244 4244
 
4245 4245
 	// Icône
4246 4246
 	$icone = http_img_pack($fond, $alt, "width='$size' height='$size'");
4247
-	$icone = "<span class=\"icone-image".($fonction ? " icone-fonction icone-fonction-$fonction" : "") . "\">$icone</span>";
4247
+	$icone = "<span class=\"icone-image".($fonction ? " icone-fonction icone-fonction-$fonction" : "")."\">$icone</span>";
4248 4248
 
4249 4249
 	// Markup final
4250 4250
 	if ($type == 'lien') {
@@ -4519,20 +4519,20 @@  discard block
 block discarded – undo
4519 4519
 		$class_form = 'ajax';
4520 4520
 		$class = str_replace('ajax', '', $class);
4521 4521
 	}
4522
-	$class_btn = 'submit ' . trim($class);
4522
+	$class_btn = 'submit '.trim($class);
4523 4523
 
4524 4524
 	if ($confirm) {
4525
-		$confirm = "confirm(\"" . attribut_html($confirm) . "\")";
4525
+		$confirm = "confirm(\"".attribut_html($confirm)."\")";
4526 4526
 		if ($callback) {
4527 4527
 			$callback = "$confirm?($callback):false";
4528 4528
 		} else {
4529 4529
 			$callback = $confirm;
4530 4530
 		}
4531 4531
 	}
4532
-	$onclick = $callback ? " onclick='return " . addcslashes($callback, "'") . "'" : "";
4532
+	$onclick = $callback ? " onclick='return ".addcslashes($callback, "'")."'" : "";
4533 4533
 	$title = $title ? " title='$title'" : '';
4534 4534
 
4535
-	return "<form class='bouton_action_post $class_form' method='post' action='$url'><div>" . form_hidden($url)
4535
+	return "<form class='bouton_action_post $class_form' method='post' action='$url'><div>".form_hidden($url)
4536 4536
 	. "<button type='submit' class='$class_btn'$title$onclick>$libelle</button></div></form>";
4537 4537
 }
4538 4538
 
@@ -4596,14 +4596,14 @@  discard block
 block discarded – undo
4596 4596
 		$champ_titre = "";
4597 4597
 		if ($demande_titre) {
4598 4598
 			// si pas de titre declare mais champ titre, il sera peuple par le select *
4599
-			$champ_titre = (!empty($desc['titre'])) ? ', ' . $desc['titre'] : '';
4599
+			$champ_titre = (!empty($desc['titre'])) ? ', '.$desc['titre'] : '';
4600 4600
 		}
4601 4601
 		include_spip('base/abstract_sql');
4602 4602
 		include_spip('base/connect_sql');
4603 4603
 		$objets[$type_objet][$id_objet] = sql_fetsel(
4604
-			'*' . $champ_titre,
4604
+			'*'.$champ_titre,
4605 4605
 			$desc['table_sql'],
4606
-			id_table_objet($type_objet) . ' = ' . intval($id_objet)
4606
+			id_table_objet($type_objet).' = '.intval($id_objet)
4607 4607
 		);
4608 4608
 
4609 4609
 		// Toujours noter la longueur d'introduction, même si pas demandé cette fois-ci
@@ -4677,8 +4677,7 @@  discard block
 block discarded – undo
4677 4677
 	if (isset($ligne_sql['chapo'])) {
4678 4678
 		$chapo = $ligne_sql['chapo'];
4679 4679
 		$texte = strlen($descriptif) ?
4680
-			'' :
4681
-			"$chapo \n\n $texte";
4680
+			'' : "$chapo \n\n $texte";
4682 4681
 	}
4683 4682
 
4684 4683
 	// Longueur en paramètre, sinon celle renseignée dans la description de l'objet, sinon valeur en dur
@@ -4745,7 +4744,7 @@  discard block
 block discarded – undo
4745 4744
 		return $texte;
4746 4745
 	}
4747 4746
 
4748
-	$traitement = str_replace('%s', "'" . texte_script($texte) . "'", $traitement);
4747
+	$traitement = str_replace('%s', "'".texte_script($texte)."'", $traitement);
4749 4748
 
4750 4749
 	// Fournir $connect et $Pile[0] au traitement si besoin
4751 4750
 	$Pile = array(0 => $env);
@@ -4779,7 +4778,7 @@  discard block
 block discarded – undo
4779 4778
 	}
4780 4779
 	$url = generer_url_entite($id_objet, $objet, '', '', $connect);
4781 4780
 
4782
-	return "<a href='$url' class='$objet'>" . couper($titre, $longueur) . "</a>";
4781
+	return "<a href='$url' class='$objet'>".couper($titre, $longueur)."</a>";
4783 4782
 }
4784 4783
 
4785 4784
 
@@ -4798,10 +4797,10 @@  discard block
 block discarded – undo
4798 4797
 function wrap($texte, $wrap) {
4799 4798
 	$balises = extraire_balises($wrap);
4800 4799
 	if (preg_match_all(",<([a-z]\w*)\b[^>]*>,UimsS", $wrap, $regs, PREG_PATTERN_ORDER)) {
4801
-		$texte = $wrap . $texte;
4800
+		$texte = $wrap.$texte;
4802 4801
 		$regs = array_reverse($regs[1]);
4803
-		$wrap = "</" . implode("></", $regs) . ">";
4804
-		$texte = $texte . $wrap;
4802
+		$wrap = "</".implode("></", $regs).">";
4803
+		$texte = $texte.$wrap;
4805 4804
 	}
4806 4805
 
4807 4806
 	return $texte;
@@ -4832,7 +4831,7 @@  discard block
 block discarded – undo
4832 4831
 
4833 4832
 	// caster $u en array si besoin
4834 4833
 	if (is_object($u)) {
4835
-		$u = (array)$u;
4834
+		$u = (array) $u;
4836 4835
 	}
4837 4836
 
4838 4837
 	if (is_array($u)) {
@@ -4853,7 +4852,7 @@  discard block
 block discarded – undo
4853 4852
 		// sinon on passe a la ligne et on indente
4854 4853
 		$i_str = str_pad("", $indent, " ");
4855 4854
 		foreach ($u as $k => $v) {
4856
-			$out .= $join . $i_str . "$k: " . filtre_print_dist($v, $join, $indent + 2);
4855
+			$out .= $join.$i_str."$k: ".filtre_print_dist($v, $join, $indent + 2);
4857 4856
 		}
4858 4857
 
4859 4858
 		return $out;
@@ -4906,8 +4905,8 @@  discard block
 block discarded – undo
4906 4905
  * @param string $class
4907 4906
  * @return string
4908 4907
  */
4909
-function objet_icone($objet, $taille = 24, $class='') {
4910
-	$icone = objet_info($objet, 'icone_objet') . "-" . $taille . ".png";
4908
+function objet_icone($objet, $taille = 24, $class = '') {
4909
+	$icone = objet_info($objet, 'icone_objet')."-".$taille.".png";
4911 4910
 	$icone = chemin_image($icone);
4912 4911
 	$balise_img = charger_filtre('balise_img');
4913 4912
 
@@ -4931,12 +4930,12 @@  discard block
 block discarded – undo
4931 4930
  * @param array $options
4932 4931
  * @return string
4933 4932
  */
4934
-function objet_T($objet, $chaine, $args = array(), $options = array()){
4935
-	$chaine = explode(':',$chaine);
4936
-	if ($t = _T($objet . ':' . end($chaine), $args, array_merge($options, array('force'=>false)))) {
4933
+function objet_T($objet, $chaine, $args = array(), $options = array()) {
4934
+	$chaine = explode(':', $chaine);
4935
+	if ($t = _T($objet.':'.end($chaine), $args, array_merge($options, array('force'=>false)))) {
4937 4936
 		return $t;
4938 4937
 	}
4939
-	$chaine = implode(':',$chaine);
4938
+	$chaine = implode(':', $chaine);
4940 4939
 	return _T($chaine, $args, $options);
4941 4940
 }
4942 4941
 
@@ -4998,7 +4997,7 @@  discard block
 block discarded – undo
4998 4997
 	$cache = recuperer_fond($fond, $contexte, $options, $connect);
4999 4998
 
5000 4999
 	// calculer le nom de la css
5001
-	$dir_var = sous_repertoire(_DIR_VAR, 'cache-' . $extension);
5000
+	$dir_var = sous_repertoire(_DIR_VAR, 'cache-'.$extension);
5002 5001
 	$nom_safe = preg_replace(",\W,", '_', str_replace('.', '_', $fond));
5003 5002
 	$contexte_implicite = calculer_contexte_implicite();
5004 5003
 
@@ -5006,22 +5005,22 @@  discard block
 block discarded – undo
5006 5005
 	// mais on peut hasher selon le contenu a la demande, si plusieurs contextes produisent un meme contenu
5007 5006
 	// reduit la variabilite du nom et donc le nombre de css concatenees possibles in fine
5008 5007
 	if (isset($options['hash_on_content']) and $options['hash_on_content']) {
5009
-		$hash = md5($contexte_implicite['host'] . '::'. $cache);
5008
+		$hash = md5($contexte_implicite['host'].'::'.$cache);
5010 5009
 	}
5011 5010
 	else {
5012 5011
 		unset($contexte_implicite['notes']); // pas pertinent pour signaler un changeemnt de contenu pour des css/js
5013 5012
 		ksort($contexte);
5014
-		$hash = md5($fond . json_encode($contexte_implicite) . json_encode($contexte) . $connect);
5013
+		$hash = md5($fond.json_encode($contexte_implicite).json_encode($contexte).$connect);
5015 5014
 	}
5016
-	$filename = $dir_var . $extension . "dyn-$nom_safe-" . substr($hash, 0, 8) . ".$extension";
5015
+	$filename = $dir_var.$extension."dyn-$nom_safe-".substr($hash, 0, 8).".$extension";
5017 5016
 
5018 5017
 	// mettre a jour le fichier si il n'existe pas
5019 5018
 	// ou trop ancien
5020 5019
 	// le dernier fichier produit est toujours suffixe par .last
5021 5020
 	// et recopie sur le fichier cible uniquement si il change
5022 5021
 	if (!file_exists($filename)
5023
-		or !file_exists($filename . ".last")
5024
-		or (isset($cache['lastmodified']) and $cache['lastmodified'] and filemtime($filename . ".last") < $cache['lastmodified'])
5022
+		or !file_exists($filename.".last")
5023
+		or (isset($cache['lastmodified']) and $cache['lastmodified'] and filemtime($filename.".last") < $cache['lastmodified'])
5025 5024
 		or (defined('_VAR_MODE') and _VAR_MODE == 'recalcul')
5026 5025
 	) {
5027 5026
 		$contenu = $cache['texte'];
@@ -5040,10 +5039,10 @@  discard block
 block discarded – undo
5040 5039
 			}
5041 5040
 			// pas de date dans le commentaire car sinon ca invalide le md5 et force la maj
5042 5041
 			// mais on peut mettre un md5 du contenu, ce qui donne un aperu rapide si la feuille a change ou non
5043
-			$comment .= "}\n   md5:" . md5($contenu) . " */\n";
5042
+			$comment .= "}\n   md5:".md5($contenu)." */\n";
5044 5043
 		}
5045 5044
 		// et ecrire le fichier si il change
5046
-		ecrire_fichier_calcule_si_modifie($filename, $comment . $contenu, false, true);
5045
+		ecrire_fichier_calcule_si_modifie($filename, $comment.$contenu, false, true);
5047 5046
 	}
5048 5047
 
5049 5048
 	return timestamp($filename);
@@ -5238,11 +5237,11 @@  discard block
 block discarded – undo
5238 5237
 function spip_affiche_mot_de_passe_masque($passe, $afficher_partiellement = false, $portion_pourcent = null) {
5239 5238
 	$l = strlen($passe);
5240 5239
 
5241
-	if ($l<=8 or !$afficher_partiellement){
5240
+	if ($l <= 8 or !$afficher_partiellement) {
5242 5241
 		if (!$l) {
5243 5242
 			return ''; // montrer qu'il y a pas de mot de passe si il y en a pas
5244 5243
 		}
5245
-		return str_pad('',$afficher_partiellement ? $l : 16,'*');
5244
+		return str_pad('', $afficher_partiellement ? $l : 16, '*');
5246 5245
 	}
5247 5246
 
5248 5247
 	if (is_null($portion_pourcent)) {
@@ -5256,11 +5255,11 @@  discard block
 block discarded – undo
5256 5255
 	}
5257 5256
 	$e = intval(ceil($l * $portion_pourcent / 100 / 2));
5258 5257
 	$e = max($e, 0);
5259
-	$mid = str_pad('',$l-2*$e,'*');
5260
-	if ($e>0 and strlen($mid)>8){
5258
+	$mid = str_pad('', $l - 2 * $e, '*');
5259
+	if ($e > 0 and strlen($mid) > 8) {
5261 5260
 		$mid = '***...***';
5262 5261
 	}
5263
-	return substr($passe,0,$e) . $mid . ($e > 0 ? substr($passe,-$e) : '');
5262
+	return substr($passe, 0, $e).$mid.($e > 0 ? substr($passe, -$e) : '');
5264 5263
 }
5265 5264
 
5266 5265
 
@@ -5282,9 +5281,9 @@  discard block
 block discarded – undo
5282 5281
 function identifiant_slug($texte, $type = '', $options = array()) {
5283 5282
 
5284 5283
 	$original = $texte;
5285
-	$separateur = (isset($options['separateur'])?$options['separateur']:'_');
5286
-	$longueur_maxi = (isset($options['longueur_maxi'])?$options['longueur_maxi']:60);
5287
-	$longueur_mini = (isset($options['longueur_mini'])?$options['longueur_mini']:0);
5284
+	$separateur = (isset($options['separateur']) ? $options['separateur'] : '_');
5285
+	$longueur_maxi = (isset($options['longueur_maxi']) ? $options['longueur_maxi'] : 60);
5286
+	$longueur_mini = (isset($options['longueur_mini']) ? $options['longueur_mini'] : 0);
5288 5287
 
5289 5288
 	if (!function_exists('translitteration')) {
5290 5289
 		include_spip('inc/charsets');
@@ -5326,15 +5325,15 @@  discard block
 block discarded – undo
5326 5325
 			}
5327 5326
 	}
5328 5327
 
5329
-	if (strlen($texte)>$longueur_maxi) {
5328
+	if (strlen($texte) > $longueur_maxi) {
5330 5329
 		$texte = substr($texte, 0, $longueur_maxi);
5331 5330
 	}
5332 5331
 
5333 5332
 	if (strlen($texte) < $longueur_mini and $longueur_mini < $longueur_maxi) {
5334 5333
 		if (preg_match(',^\d,', $texte)) {
5335
-			$texte = ($type ? substr($type,0,1) : "s") . $texte;
5334
+			$texte = ($type ? substr($type, 0, 1) : "s").$texte;
5336 5335
 		}
5337
-		$texte .= $separateur . md5($original);
5336
+		$texte .= $separateur.md5($original);
5338 5337
 		$texte = substr($texte, 0, $longueur_mini);
5339 5338
 	}
5340 5339
 
Please login to merge, or discard this patch.
Braces   +12 added lines, -24 removed lines patch added patch discarded remove patch
@@ -622,8 +622,7 @@  discard block
 block discarded – undo
622 622
 			if (!$srcHeight) {
623 623
 				$hauteur_img[$src] = $srcHeight = $srcsize[1];
624 624
 			}
625
-		}
626
-		elseif(strpos($src, "<svg") !== false) {
625
+		} elseif(strpos($src, "<svg") !== false) {
627 626
 			include_spip('inc/svg');
628 627
 			if ($attrs = svg_lire_attributs($src)){
629 628
 				list($width, $height, $viewbox) = svg_getimagesize_from_attr($attrs);
@@ -2089,8 +2088,7 @@  discard block
 block discarded – undo
2089 2088
 				if (in_array($operation, ['ajouter', 'commuter'])
2090 2089
 					and !$is_class_presente) {
2091 2090
 					$class_new = rtrim($class_new) . " " . $c;
2092
-				}
2093
-				elseif (in_array($operation, ['supprimer', 'commuter'])
2091
+				} elseif (in_array($operation, ['supprimer', 'commuter'])
2094 2092
 					and $is_class_presente) {
2095 2093
 					$class_new = trim(preg_replace("/(^|\s)".preg_quote($c)."($|\s)/", "\\1", $class_new));
2096 2094
 				}
@@ -2100,8 +2098,7 @@  discard block
 block discarded – undo
2100 2098
 		if ($class_new !== $class_courante) {
2101 2099
 			if (strlen($class_new)) {
2102 2100
 				$balise = inserer_attribut($balise, 'class', $class_new);
2103
-			}
2104
-			elseif ($class_courante) {
2101
+			} elseif ($class_courante) {
2105 2102
 				$balise = vider_attribut($balise, 'class');
2106 2103
 			}
2107 2104
 		}
@@ -3365,8 +3362,7 @@  discard block
 block discarded – undo
3365 3362
 	  and file_exists($variante_svg_generique)) {
3366 3363
 		if ($variante_svg_size = substr($variante_svg_generique,0,-6) . $m[1] . ".svg" and file_exists($variante_svg_size)) {
3367 3364
 			$img_file = $variante_svg_size;
3368
-		}
3369
-		else {
3365
+		} else {
3370 3366
 			$img_file = $variante_svg_generique;
3371 3367
 		}
3372 3368
 	}
@@ -3398,8 +3394,7 @@  discard block
 block discarded – undo
3398 3394
 	}
3399 3395
 	if (!isset($options['chemin_image']) or $options['chemin_image'] == true) {
3400 3396
 		$img_file = chemin_image($img);
3401
-	}
3402
-	else {
3397
+	} else {
3403 3398
 		if (!isset($options['variante_svg_si_possible']) or $options['variante_svg_si_possible'] == true){
3404 3399
 			$img_file = http_img_variante_svg_si_possible($img_file);
3405 3400
 		}
@@ -3428,11 +3423,9 @@  discard block
 block discarded – undo
3428 3423
 	}
3429 3424
 	if ($alt === false) {
3430 3425
 		$alt = '';
3431
-	}
3432
-	elseif($alt or $alt==='') {
3426
+	} elseif($alt or $alt==='') {
3433 3427
 		$alt = " alt='".attribut_html($alt)."'";
3434
-	}
3435
-	else {
3428
+	} else {
3436 3429
 		$alt = " alt='".attribut_html($title)."'";
3437 3430
 	}
3438 3431
 	return "<img src='$img_file'$alt"
@@ -3557,13 +3550,11 @@  discard block
 block discarded – undo
3557 3550
 		if (!is_null($class)) {
3558 3551
 			if (strlen($class)) {
3559 3552
 				$img = inserer_attribut($img, 'class', $class);
3560
-			}
3561
-			else {
3553
+			} else {
3562 3554
 				$img = vider_attribut($img, 'class');
3563 3555
 			}
3564 3556
 		}
3565
-	}
3566
-	else {
3557
+	} else {
3567 3558
 		$img = http_img_pack($img, $alt, $class ? " class='" . attribut_html($class) . "'" : '', '',
3568 3559
 				array('chemin_image' => false, 'utiliser_suffixe_size' => false));
3569 3560
 		if (is_null($alt)) {
@@ -3643,8 +3634,7 @@  discard block
 block discarded – undo
3643 3634
 	if (!is_null($class)) {
3644 3635
 		if (strlen($class)) {
3645 3636
 			$balise_svg = inserer_attribut($balise_svg, 'class', $class);
3646
-		}
3647
-		else {
3637
+		} else {
3648 3638
 			$balise_svg = vider_attribut($balise_svg, 'class');
3649 3639
 		}
3650 3640
 	}
@@ -3656,8 +3646,7 @@  discard block
 block discarded – undo
3656 3646
 		$balise_svg = inserer_attribut($balise_svg, 'aria-labelledby', $id);
3657 3647
 		$title = "<title id=\"$id\">" . entites_html($alt)."</title>\n";
3658 3648
 		$balise_svg .= $title;
3659
-	}
3660
-	else {
3649
+	} else {
3661 3650
 		$balise_svg = inserer_attribut($balise_svg, 'aria-hidden', 'true');
3662 3651
 	}
3663 3652
 
@@ -5007,8 +4996,7 @@  discard block
 block discarded – undo
5007 4996
 	// reduit la variabilite du nom et donc le nombre de css concatenees possibles in fine
5008 4997
 	if (isset($options['hash_on_content']) and $options['hash_on_content']) {
5009 4998
 		$hash = md5($contexte_implicite['host'] . '::'. $cache);
5010
-	}
5011
-	else {
4999
+	} else {
5012 5000
 		unset($contexte_implicite['notes']); // pas pertinent pour signaler un changeemnt de contenu pour des css/js
5013 5001
 		ksort($contexte);
5014 5002
 		$hash = md5($fond . json_encode($contexte_implicite) . json_encode($contexte) . $connect);
Please login to merge, or discard this patch.