Completed
Push — master ( 6e9d01...e4a2f2 )
by cam
04:25
created
ecrire/inc/filtres.php 2 patches
Indentation   +2277 added lines, -2277 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') and _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') and _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
-	}
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 3349
 
3350
-	return $flux;
3350
+    return $flux;
3351 3351
 }
3352 3352
 
3353 3353
 
@@ -3369,64 +3369,64 @@  discard block
 block discarded – undo
3369 3369
  */
3370 3370
 function http_img_pack($img, $alt, $atts = '', $title = '', $options = array()) {
3371 3371
 
3372
-	$img_file = $img;
3373
-	if ($p = strpos($img_file, '?')) {
3374
-		$img_file = substr($img_file,0, $p);
3375
-	}
3376
-	if (!isset($options['chemin_image']) or $options['chemin_image'] == true) {
3377
-		$img_file = chemin_image($img);
3378
-	}
3379
-	else {
3380
-		if (!isset($options['variante_svg_si_possible']) or $options['variante_svg_si_possible'] == true){
3381
-			// on peut fournir une icone generique -xx.svg qui fera le job dans toutes les tailles, et qui est prioritaire sur le png
3382
-			// si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png
3383
-			if (preg_match(',-(\d+)[.](png|gif|svg)$,', $img_file, $m)
3384
-			  and $variante_svg_generique = substr($img_file, 0, -strlen($m[0])) . "-xx.svg"
3385
-			  and file_exists($variante_svg_generique)) {
3386
-				if ($variante_svg_size = substr($variante_svg_generique,0,-6) . $m[1] . ".svg" and file_exists($variante_svg_size)) {
3387
-					$img_file = $variante_svg_size;
3388
-				}
3389
-				else {
3390
-					$img_file = $variante_svg_generique;
3391
-				}
3392
-			}
3393
-		}
3394
-	}
3395
-	if (stripos($atts, 'width') === false) {
3396
-		// utiliser directement l'info de taille presente dans le nom
3397
-		if ((!isset($options['utiliser_suffixe_size'])
3398
-				or $options['utiliser_suffixe_size'] == true
3399
-			  or strpos($img_file, '-xx.svg') !== false)
3400
-			and (preg_match(',-([0-9]+)[.](png|gif|svg)$,', $img, $regs)
3401
-					 or preg_match(',\?([0-9]+)px$,', $img, $regs))
3402
-		) {
3403
-			$largeur = $hauteur = intval($regs[1]);
3404
-		} else {
3405
-			$taille = taille_image($img_file);
3406
-			list($hauteur, $largeur) = $taille;
3407
-			if (!$hauteur or !$largeur) {
3408
-				return "";
3409
-			}
3410
-		}
3411
-		$atts .= " width='" . $largeur . "' height='" . $hauteur . "'";
3412
-	}
3413
-
3414
-	if (file_exists($img_file)) {
3415
-		$img_file = timestamp($img_file);
3416
-	}
3417
-	if ($alt === false) {
3418
-		$alt = '';
3419
-	}
3420
-	elseif($alt or $alt==='') {
3421
-		$alt = " alt='".attribut_html($alt)."'";
3422
-	}
3423
-	else {
3424
-		$alt = " alt='".attribut_html($title)."'";
3425
-	}
3426
-	return "<img src='$img_file'$alt"
3427
-	. ($title ? ' title="' . attribut_html($title) . '"' : '')
3428
-	. " " . ltrim($atts)
3429
-	. " />";
3372
+    $img_file = $img;
3373
+    if ($p = strpos($img_file, '?')) {
3374
+        $img_file = substr($img_file,0, $p);
3375
+    }
3376
+    if (!isset($options['chemin_image']) or $options['chemin_image'] == true) {
3377
+        $img_file = chemin_image($img);
3378
+    }
3379
+    else {
3380
+        if (!isset($options['variante_svg_si_possible']) or $options['variante_svg_si_possible'] == true){
3381
+            // on peut fournir une icone generique -xx.svg qui fera le job dans toutes les tailles, et qui est prioritaire sur le png
3382
+            // si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png
3383
+            if (preg_match(',-(\d+)[.](png|gif|svg)$,', $img_file, $m)
3384
+              and $variante_svg_generique = substr($img_file, 0, -strlen($m[0])) . "-xx.svg"
3385
+              and file_exists($variante_svg_generique)) {
3386
+                if ($variante_svg_size = substr($variante_svg_generique,0,-6) . $m[1] . ".svg" and file_exists($variante_svg_size)) {
3387
+                    $img_file = $variante_svg_size;
3388
+                }
3389
+                else {
3390
+                    $img_file = $variante_svg_generique;
3391
+                }
3392
+            }
3393
+        }
3394
+    }
3395
+    if (stripos($atts, 'width') === false) {
3396
+        // utiliser directement l'info de taille presente dans le nom
3397
+        if ((!isset($options['utiliser_suffixe_size'])
3398
+                or $options['utiliser_suffixe_size'] == true
3399
+              or strpos($img_file, '-xx.svg') !== false)
3400
+            and (preg_match(',-([0-9]+)[.](png|gif|svg)$,', $img, $regs)
3401
+                     or preg_match(',\?([0-9]+)px$,', $img, $regs))
3402
+        ) {
3403
+            $largeur = $hauteur = intval($regs[1]);
3404
+        } else {
3405
+            $taille = taille_image($img_file);
3406
+            list($hauteur, $largeur) = $taille;
3407
+            if (!$hauteur or !$largeur) {
3408
+                return "";
3409
+            }
3410
+        }
3411
+        $atts .= " width='" . $largeur . "' height='" . $hauteur . "'";
3412
+    }
3413
+
3414
+    if (file_exists($img_file)) {
3415
+        $img_file = timestamp($img_file);
3416
+    }
3417
+    if ($alt === false) {
3418
+        $alt = '';
3419
+    }
3420
+    elseif($alt or $alt==='') {
3421
+        $alt = " alt='".attribut_html($alt)."'";
3422
+    }
3423
+    else {
3424
+        $alt = " alt='".attribut_html($title)."'";
3425
+    }
3426
+    return "<img src='$img_file'$alt"
3427
+    . ($title ? ' title="' . attribut_html($title) . '"' : '')
3428
+    . " " . ltrim($atts)
3429
+    . " />";
3430 3430
 }
3431 3431
 
3432 3432
 /**
@@ -3438,68 +3438,68 @@  discard block
 block discarded – undo
3438 3438
  * @return string
3439 3439
  */
3440 3440
 function http_style_background($img, $att = '', $size=null) {
3441
-	if ($size and is_numeric($size)){
3442
-		$size = trim($size) . "px";
3443
-	}
3444
-	return " style='background" .
3445
-		($att ? "" : "-image") . ": url(\"" . chemin_image($img) . "\")" . ($att ? (' ' . $att) : '') . ";"
3446
-		. ($size ? "background-size:{$size};" : '')
3447
-		. "'";
3441
+    if ($size and is_numeric($size)){
3442
+        $size = trim($size) . "px";
3443
+    }
3444
+    return " style='background" .
3445
+        ($att ? "" : "-image") . ": url(\"" . chemin_image($img) . "\")" . ($att ? (' ' . $att) : '') . ";"
3446
+        . ($size ? "background-size:{$size};" : '')
3447
+        . "'";
3448 3448
 }
3449 3449
 
3450 3450
 
3451 3451
 function helper_filtre_balise_img_svg_arguments($alt_or_size, $class_or_size, $size) {
3452
-	$args = [$alt_or_size, $class_or_size, $size];
3453
-	while (is_null(end($args)) and count($args)) {
3454
-		array_pop($args);
3455
-	}
3456
-	if (!count($args)) {
3457
-		return [null, null, null];
3458
-	}
3459
-	if (count($args) < 3) {
3460
-		$maybe_size = array_pop($args);
3461
-		// @2x
3462
-		// @1.5x
3463
-		// 512
3464
-		// 512x*
3465
-		// 512x300
3466
-		if (!strlen($maybe_size)
3467
-			or !preg_match(',^(@\d+(\.\d+)?x|\d+(x\*)?|\d+x\d+)$,', trim($maybe_size))) {
3468
-			$args[] = $maybe_size;
3469
-			$maybe_size = null;
3470
-		}
3471
-		while (count($args)<2) {
3472
-			$args[] = null; // default alt or class
3473
-		}
3474
-		$args[] = $maybe_size;
3475
-	}
3476
-	return $args;
3452
+    $args = [$alt_or_size, $class_or_size, $size];
3453
+    while (is_null(end($args)) and count($args)) {
3454
+        array_pop($args);
3455
+    }
3456
+    if (!count($args)) {
3457
+        return [null, null, null];
3458
+    }
3459
+    if (count($args) < 3) {
3460
+        $maybe_size = array_pop($args);
3461
+        // @2x
3462
+        // @1.5x
3463
+        // 512
3464
+        // 512x*
3465
+        // 512x300
3466
+        if (!strlen($maybe_size)
3467
+            or !preg_match(',^(@\d+(\.\d+)?x|\d+(x\*)?|\d+x\d+)$,', trim($maybe_size))) {
3468
+            $args[] = $maybe_size;
3469
+            $maybe_size = null;
3470
+        }
3471
+        while (count($args)<2) {
3472
+            $args[] = null; // default alt or class
3473
+        }
3474
+        $args[] = $maybe_size;
3475
+    }
3476
+    return $args;
3477 3477
 }
3478 3478
 
3479 3479
 function helper_filtre_balise_img_svg_size($img, $size) {
3480
-	// si size est de la forme '@2x' c'est un coeff multiplicateur sur la densite
3481
-	if (strpos($size, '@') === 0 and substr($size,-1) === 'x') {
3482
-		$coef = floatval(substr($size, 1, -1));
3483
-		list($h, $w) = taille_image($img);
3484
-		$height = intval(round($h / $coef));
3485
-		$width = intval(round($w / $coef));
3486
-	}
3487
-	// sinon c'est une valeur seule si image caree ou largeurxhauteur
3488
-	else {
3489
-		$size = explode('x', $size, 2);
3490
-		$size = array_map('trim', $size);
3491
-		$height = $width = intval(array_shift($size));
3492
-
3493
-		if (count($size) and reset($size)) {
3494
-			$height = array_shift($size);
3495
-			if ($height === '*') {
3496
-				list($h, $w) = taille_image($img);
3497
-				$height = intval(round($h * $width / $w));
3498
-			}
3499
-		}
3500
-	}
3501
-
3502
-	return [$width, $height];
3480
+    // si size est de la forme '@2x' c'est un coeff multiplicateur sur la densite
3481
+    if (strpos($size, '@') === 0 and substr($size,-1) === 'x') {
3482
+        $coef = floatval(substr($size, 1, -1));
3483
+        list($h, $w) = taille_image($img);
3484
+        $height = intval(round($h / $coef));
3485
+        $width = intval(round($w / $coef));
3486
+    }
3487
+    // sinon c'est une valeur seule si image caree ou largeurxhauteur
3488
+    else {
3489
+        $size = explode('x', $size, 2);
3490
+        $size = array_map('trim', $size);
3491
+        $height = $width = intval(array_shift($size));
3492
+
3493
+        if (count($size) and reset($size)) {
3494
+            $height = array_shift($size);
3495
+            if ($height === '*') {
3496
+                list($h, $w) = taille_image($img);
3497
+                $height = intval(round($h * $width / $w));
3498
+            }
3499
+        }
3500
+    }
3501
+
3502
+    return [$width, $height];
3503 3503
 }
3504 3504
 
3505 3505
 /**
@@ -3535,38 +3535,38 @@  discard block
 block discarded – undo
3535 3535
  */
3536 3536
 function filtre_balise_img_dist($img, $alt = '', $class = null, $size=null) {
3537 3537
 
3538
-	list($alt, $class, $size) = helper_filtre_balise_img_svg_arguments($alt, $class, $size);
3538
+    list($alt, $class, $size) = helper_filtre_balise_img_svg_arguments($alt, $class, $size);
3539 3539
 
3540
-	$img = trim($img);
3541
-	if (strpos($img, '<img') === 0) {
3542
-		if (!is_null($alt)) {
3543
-			$img = inserer_attribut($img, 'alt', $alt);
3544
-		}
3545
-		if (!is_null($class)) {
3546
-			if (strlen($class)) {
3547
-				$img = inserer_attribut($img, 'class', $class);
3548
-			}
3549
-			else {
3550
-				$img = vider_attribut($img, 'class');
3551
-			}
3552
-		}
3553
-	}
3554
-	else {
3555
-		$img = http_img_pack($img, $alt, $class ? " class='" . attribut_html($class) . "'" : '', '',
3556
-				array('chemin_image' => false, 'utiliser_suffixe_size' => false));
3557
-		if (is_null($alt)) {
3558
-			$img = vider_attribut($img, 'alt');
3559
-		}
3560
-	}
3540
+    $img = trim($img);
3541
+    if (strpos($img, '<img') === 0) {
3542
+        if (!is_null($alt)) {
3543
+            $img = inserer_attribut($img, 'alt', $alt);
3544
+        }
3545
+        if (!is_null($class)) {
3546
+            if (strlen($class)) {
3547
+                $img = inserer_attribut($img, 'class', $class);
3548
+            }
3549
+            else {
3550
+                $img = vider_attribut($img, 'class');
3551
+            }
3552
+        }
3553
+    }
3554
+    else {
3555
+        $img = http_img_pack($img, $alt, $class ? " class='" . attribut_html($class) . "'" : '', '',
3556
+                array('chemin_image' => false, 'utiliser_suffixe_size' => false));
3557
+        if (is_null($alt)) {
3558
+            $img = vider_attribut($img, 'alt');
3559
+        }
3560
+    }
3561 3561
 
3562
-	if ($img and !is_null($size) and strlen($size = trim($size))) {
3563
-		list($width, $height) = helper_filtre_balise_img_svg_size($img, $size);
3562
+    if ($img and !is_null($size) and strlen($size = trim($size))) {
3563
+        list($width, $height) = helper_filtre_balise_img_svg_size($img, $size);
3564 3564
 
3565
-		$img = inserer_attribut($img, 'width', $width);
3566
-		$img = inserer_attribut($img, 'height', $height);
3567
-	}
3565
+        $img = inserer_attribut($img, 'width', $width);
3566
+        $img = inserer_attribut($img, 'height', $height);
3567
+    }
3568 3568
 
3569
-	return $img;
3569
+    return $img;
3570 3570
 }
3571 3571
 
3572 3572
 
@@ -3600,67 +3600,67 @@  discard block
 block discarded – undo
3600 3600
  */
3601 3601
 function filtre_balise_svg_dist($img, $alt = '', $class = null, $size=null) {
3602 3602
 
3603
-	$img = trim($img);
3604
-	$img_file = $img;
3605
-	if (strpos($img, '<svg') === false){
3606
-		if ($p = strpos($img_file, '?')){
3607
-			$img_file = substr($img_file, 0, $p);
3608
-		}
3603
+    $img = trim($img);
3604
+    $img_file = $img;
3605
+    if (strpos($img, '<svg') === false){
3606
+        if ($p = strpos($img_file, '?')){
3607
+            $img_file = substr($img_file, 0, $p);
3608
+        }
3609 3609
 
3610
-		if (!$img_file or !$svg = file_get_contents($img_file)){
3611
-			return '';
3612
-		}
3613
-	}
3610
+        if (!$img_file or !$svg = file_get_contents($img_file)){
3611
+            return '';
3612
+        }
3613
+    }
3614 3614
 
3615
-	if (!preg_match(",<svg\b[^>]*>,UimsS", $svg, $match)) {
3616
-		return '';
3617
-	}
3615
+    if (!preg_match(",<svg\b[^>]*>,UimsS", $svg, $match)) {
3616
+        return '';
3617
+    }
3618 3618
 
3619
-	list($alt, $class, $size) = helper_filtre_balise_img_svg_arguments($alt, $class, $size);
3619
+    list($alt, $class, $size) = helper_filtre_balise_img_svg_arguments($alt, $class, $size);
3620 3620
 
3621
-	$balise_svg = $match[0];
3622
-	$balise_svg_source = $balise_svg;
3621
+    $balise_svg = $match[0];
3622
+    $balise_svg_source = $balise_svg;
3623 3623
 
3624
-	// entete XML à supprimer
3625
-	$svg = preg_replace(',^\s*<\?xml[^>]*\?' . '>,', '', $svg);
3624
+    // entete XML à supprimer
3625
+    $svg = preg_replace(',^\s*<\?xml[^>]*\?' . '>,', '', $svg);
3626 3626
 
3627
-	// IE est toujours mon ami
3628
-	$balise_svg = inserer_attribut($balise_svg, 'focusable', 'false');
3627
+    // IE est toujours mon ami
3628
+    $balise_svg = inserer_attribut($balise_svg, 'focusable', 'false');
3629 3629
 
3630
-	// regler la classe
3631
-	if (!is_null($class)) {
3632
-		if (strlen($class)) {
3633
-			$balise_svg = inserer_attribut($balise_svg, 'class', $class);
3634
-		}
3635
-		else {
3636
-			$balise_svg = vider_attribut($balise_svg, 'class');
3637
-		}
3638
-	}
3630
+    // regler la classe
3631
+    if (!is_null($class)) {
3632
+        if (strlen($class)) {
3633
+            $balise_svg = inserer_attribut($balise_svg, 'class', $class);
3634
+        }
3635
+        else {
3636
+            $balise_svg = vider_attribut($balise_svg, 'class');
3637
+        }
3638
+    }
3639 3639
 
3640
-	// regler le alt
3641
-	if ($alt){
3642
-		$balise_svg = inserer_attribut($balise_svg, 'role', 'img');
3643
-		$id = "img-svg-title-" . substr(md5("$img_file:$svg:$alt"),0,4);
3644
-		$balise_svg = inserer_attribut($balise_svg, 'aria-labelledby', $id);
3645
-		$title = "<title id=\"$id\">" . entites_html($alt)."</title>\n";
3646
-		$balise_svg .= $title;
3647
-	}
3648
-	else {
3649
-		$balise_svg = inserer_attribut($balise_svg, 'aria-hidden', 'true');
3650
-	}
3640
+    // regler le alt
3641
+    if ($alt){
3642
+        $balise_svg = inserer_attribut($balise_svg, 'role', 'img');
3643
+        $id = "img-svg-title-" . substr(md5("$img_file:$svg:$alt"),0,4);
3644
+        $balise_svg = inserer_attribut($balise_svg, 'aria-labelledby', $id);
3645
+        $title = "<title id=\"$id\">" . entites_html($alt)."</title>\n";
3646
+        $balise_svg .= $title;
3647
+    }
3648
+    else {
3649
+        $balise_svg = inserer_attribut($balise_svg, 'aria-hidden', 'true');
3650
+    }
3651 3651
 
3652
-	$svg = str_replace($balise_svg_source, $balise_svg, $svg);
3652
+    $svg = str_replace($balise_svg_source, $balise_svg, $svg);
3653 3653
 
3654
-	if (!is_null($size) and strlen($size = trim($size))) {
3655
-		list($width, $height) = helper_filtre_balise_img_svg_size($svg, $size);
3654
+    if (!is_null($size) and strlen($size = trim($size))) {
3655
+        list($width, $height) = helper_filtre_balise_img_svg_size($svg, $size);
3656 3656
 
3657
-		if (!function_exists('svg_redimensionner')) {
3658
-			include_spip('inc/svg');
3659
-		}
3660
-		$svg = svg_redimensionner($svg, $width, $height);
3661
-	}
3657
+        if (!function_exists('svg_redimensionner')) {
3658
+            include_spip('inc/svg');
3659
+        }
3660
+        $svg = svg_redimensionner($svg, $width, $height);
3661
+    }
3662 3662
 
3663
-	return $svg;
3663
+    return $svg;
3664 3664
 }
3665 3665
 
3666 3666
 
@@ -3686,17 +3686,17 @@  discard block
 block discarded – undo
3686 3686
  *     Code HTML résultant
3687 3687
  **/
3688 3688
 function filtre_foreach_dist($tableau, $modele = 'foreach') {
3689
-	$texte = '';
3690
-	if (is_array($tableau)) {
3691
-		foreach ($tableau as $k => $v) {
3692
-			$res = recuperer_fond('modeles/' . $modele,
3693
-				array_merge(array('cle' => $k), (is_array($v) ? $v : array('valeur' => $v)))
3694
-			);
3695
-			$texte .= $res;
3696
-		}
3697
-	}
3689
+    $texte = '';
3690
+    if (is_array($tableau)) {
3691
+        foreach ($tableau as $k => $v) {
3692
+            $res = recuperer_fond('modeles/' . $modele,
3693
+                array_merge(array('cle' => $k), (is_array($v) ? $v : array('valeur' => $v)))
3694
+            );
3695
+            $texte .= $res;
3696
+        }
3697
+    }
3698 3698
 
3699
-	return $texte;
3699
+    return $texte;
3700 3700
 }
3701 3701
 
3702 3702
 
@@ -3721,37 +3721,37 @@  discard block
 block discarded – undo
3721 3721
  *         - tout : retourne toutes les informations du plugin actif
3722 3722
  **/
3723 3723
 function filtre_info_plugin_dist($plugin, $type_info, $reload = false) {
3724
-	include_spip('inc/plugin');
3725
-	$plugin = strtoupper($plugin);
3726
-	$plugins_actifs = liste_plugin_actifs();
3727
-
3728
-	if (!$plugin) {
3729
-		return serialize(array_keys($plugins_actifs));
3730
-	} elseif (empty($plugins_actifs[$plugin]) and !$reload) {
3731
-		return '';
3732
-	} elseif (($type_info == 'est_actif') and !$reload) {
3733
-		return $plugins_actifs[$plugin] ? 1 : 0;
3734
-	} elseif (isset($plugins_actifs[$plugin][$type_info]) and !$reload) {
3735
-		return $plugins_actifs[$plugin][$type_info];
3736
-	} else {
3737
-		$get_infos = charger_fonction('get_infos', 'plugins');
3738
-		// On prend en compte les extensions
3739
-		if (!is_dir($plugins_actifs[$plugin]['dir_type'])) {
3740
-			$dir_plugins = constant($plugins_actifs[$plugin]['dir_type']);
3741
-		} else {
3742
-			$dir_plugins = $plugins_actifs[$plugin]['dir_type'];
3743
-		}
3744
-		if (!$infos = $get_infos($plugins_actifs[$plugin]['dir'], $reload, $dir_plugins)) {
3745
-			return '';
3746
-		}
3747
-		if ($type_info == 'tout') {
3748
-			return $infos;
3749
-		} elseif ($type_info == 'est_actif') {
3750
-			return $infos ? 1 : 0;
3751
-		} else {
3752
-			return strval($infos[$type_info]);
3753
-		}
3754
-	}
3724
+    include_spip('inc/plugin');
3725
+    $plugin = strtoupper($plugin);
3726
+    $plugins_actifs = liste_plugin_actifs();
3727
+
3728
+    if (!$plugin) {
3729
+        return serialize(array_keys($plugins_actifs));
3730
+    } elseif (empty($plugins_actifs[$plugin]) and !$reload) {
3731
+        return '';
3732
+    } elseif (($type_info == 'est_actif') and !$reload) {
3733
+        return $plugins_actifs[$plugin] ? 1 : 0;
3734
+    } elseif (isset($plugins_actifs[$plugin][$type_info]) and !$reload) {
3735
+        return $plugins_actifs[$plugin][$type_info];
3736
+    } else {
3737
+        $get_infos = charger_fonction('get_infos', 'plugins');
3738
+        // On prend en compte les extensions
3739
+        if (!is_dir($plugins_actifs[$plugin]['dir_type'])) {
3740
+            $dir_plugins = constant($plugins_actifs[$plugin]['dir_type']);
3741
+        } else {
3742
+            $dir_plugins = $plugins_actifs[$plugin]['dir_type'];
3743
+        }
3744
+        if (!$infos = $get_infos($plugins_actifs[$plugin]['dir'], $reload, $dir_plugins)) {
3745
+            return '';
3746
+        }
3747
+        if ($type_info == 'tout') {
3748
+            return $infos;
3749
+        } elseif ($type_info == 'est_actif') {
3750
+            return $infos ? 1 : 0;
3751
+        } else {
3752
+            return strval($infos[$type_info]);
3753
+        }
3754
+    }
3755 3755
 }
3756 3756
 
3757 3757
 
@@ -3778,9 +3778,9 @@  discard block
 block discarded – undo
3778 3778
  *     Code HTML de l'image de puce de statut à insérer (et du menu de changement si présent)
3779 3779
  */
3780 3780
 function puce_changement_statut($id_objet, $statut, $id_rubrique, $type, $ajax = false) {
3781
-	$puce_statut = charger_fonction('puce_statut', 'inc');
3781
+    $puce_statut = charger_fonction('puce_statut', 'inc');
3782 3782
 
3783
-	return $puce_statut($id_objet, $statut, $id_rubrique, $type, $ajax);
3783
+    return $puce_statut($id_objet, $statut, $id_rubrique, $type, $ajax);
3784 3784
 }
3785 3785
 
3786 3786
 
@@ -3810,13 +3810,13 @@  discard block
 block discarded – undo
3810 3810
  *     Code HTML de l'image de puce de statut à insérer (et du menu de changement si présent)
3811 3811
  */
3812 3812
 function filtre_puce_statut_dist($statut, $objet, $id_objet = 0, $id_parent = 0) {
3813
-	static $puce_statut = null;
3814
-	if (!$puce_statut) {
3815
-		$puce_statut = charger_fonction('puce_statut', 'inc');
3816
-	}
3813
+    static $puce_statut = null;
3814
+    if (!$puce_statut) {
3815
+        $puce_statut = charger_fonction('puce_statut', 'inc');
3816
+    }
3817 3817
 
3818
-	return $puce_statut($id_objet, $statut, $id_parent, $objet, false,
3819
-		objet_info($objet, 'editable') ? _ACTIVER_PUCE_RAPIDE : false);
3818
+    return $puce_statut($id_objet, $statut, $id_parent, $objet, false,
3819
+        objet_info($objet, 'editable') ? _ACTIVER_PUCE_RAPIDE : false);
3820 3820
 }
3821 3821
 
3822 3822
 
@@ -3843,95 +3843,95 @@  discard block
 block discarded – undo
3843 3843
  *   hash du contexte
3844 3844
  */
3845 3845
 function encoder_contexte_ajax($c, $form = '', $emboite = null, $ajaxid = '') {
3846
-	if (is_string($c)
3847
-		and @unserialize($c) !== false
3848
-	) {
3849
-		$c = unserialize($c);
3850
-	}
3851
-
3852
-	// supprimer les parametres debut_x
3853
-	// pour que la pagination ajax ne soit pas plantee
3854
-	// si on charge la page &debut_x=1 : car alors en cliquant sur l'item 0,
3855
-	// le debut_x=0 n'existe pas, et on resterait sur 1
3856
-	if (is_array($c)) {
3857
-		foreach ($c as $k => $v) {
3858
-			if (strpos($k, 'debut_') === 0) {
3859
-				unset($c[$k]);
3860
-			}
3861
-		}
3862
-	}
3863
-
3864
-	if (!function_exists('calculer_cle_action')) {
3865
-		include_spip("inc/securiser_action");
3866
-	}
3867
-
3868
-	$c = serialize($c);
3869
-	$cle = calculer_cle_action($form . $c);
3870
-	$c = "$cle:$c";
3871
-
3872
-	// on ne stocke pas les contextes dans des fichiers en cache
3873
-	// par defaut, sauf si cette configuration a été forcée
3874
-	// OU que la longueur de l’argument géneré est plus long
3875
-	// que ce qui est toléré.
3876
-	$cache_contextes_ajax = (defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX);
3877
-	if (!$cache_contextes_ajax) {
3878
-		$env = $c;
3879
-		if (function_exists('gzdeflate') && function_exists('gzinflate')) {
3880
-			$env = gzdeflate($env);
3881
-		}
3882
-		$env = _xor($env);
3883
-		$env = base64_encode($env);
3884
-		$len = strlen($env);
3885
-		// Si l’url est trop longue pour le navigateur
3886
-		$max_len = _CACHE_CONTEXTES_AJAX_SUR_LONGUEUR;
3887
-		if ($len > $max_len) {
3888
-			$cache_contextes_ajax = true;
3889
-			spip_log("Contextes AJAX forces en fichiers !"
3890
-				. " Cela arrive lorsque la valeur du contexte" 
3891
-				. " depasse la longueur maximale autorisee ($max_len). Ici : $len."
3892
-				, _LOG_AVERTISSEMENT);
3893
-		}
3894
-		// Sinon si Suhosin est actif et a une la valeur maximale des variables en GET...
3895
-		elseif (
3896
-			$max_len = @ini_get('suhosin.get.max_value_length')
3897
-			and $max_len < $len
3898
-		) {
3899
-			$cache_contextes_ajax = true;
3900
-			spip_log("Contextes AJAX forces en fichiers !"
3901
-				. " Cela arrive lorsque la valeur du contexte"
3902
-				. " depasse la longueur maximale autorisee par Suhosin"
3903
-				. " ($max_len) dans 'suhosin.get.max_value_length'. Ici : $len."
3904
-				. " Vous devriez modifier les parametres de Suhosin"
3905
-				. " pour accepter au moins 1024 caracteres.", _LOG_AVERTISSEMENT);
3906
-		} 
3907
-
3908
-	}
3909
-
3910
-	if ($cache_contextes_ajax) {
3911
-		$dir = sous_repertoire(_DIR_CACHE, 'contextes');
3912
-		// stocker les contextes sur disque et ne passer qu'un hash dans l'url
3913
-		$md5 = md5($c);
3914
-		ecrire_fichier("$dir/c$md5", $c);
3915
-		$env = $md5;
3916
-	}
3917
-
3918
-	if ($emboite === null) {
3919
-		return $env;
3920
-	}
3921
-	if (!trim($emboite)) {
3922
-		return "";
3923
-	}
3924
-	// toujours encoder l'url source dans le bloc ajax
3925
-	$r = self();
3926
-	$r = ' data-origin="' . $r . '"';
3927
-	$class = 'ajaxbloc';
3928
-	if ($ajaxid and is_string($ajaxid)) {
3929
-		// ajaxid est normalement conforme a un nom de classe css
3930
-		// on ne verifie pas la conformite, mais on passe entites_html par dessus par precaution
3931
-		$class .= ' ajax-id-' . entites_html($ajaxid);
3932
-	}
3933
-
3934
-	return "<div class='$class' " . "data-ajax-env='$env'$r>\n$emboite</div><!--ajaxbloc-->\n";
3846
+    if (is_string($c)
3847
+        and @unserialize($c) !== false
3848
+    ) {
3849
+        $c = unserialize($c);
3850
+    }
3851
+
3852
+    // supprimer les parametres debut_x
3853
+    // pour que la pagination ajax ne soit pas plantee
3854
+    // si on charge la page &debut_x=1 : car alors en cliquant sur l'item 0,
3855
+    // le debut_x=0 n'existe pas, et on resterait sur 1
3856
+    if (is_array($c)) {
3857
+        foreach ($c as $k => $v) {
3858
+            if (strpos($k, 'debut_') === 0) {
3859
+                unset($c[$k]);
3860
+            }
3861
+        }
3862
+    }
3863
+
3864
+    if (!function_exists('calculer_cle_action')) {
3865
+        include_spip("inc/securiser_action");
3866
+    }
3867
+
3868
+    $c = serialize($c);
3869
+    $cle = calculer_cle_action($form . $c);
3870
+    $c = "$cle:$c";
3871
+
3872
+    // on ne stocke pas les contextes dans des fichiers en cache
3873
+    // par defaut, sauf si cette configuration a été forcée
3874
+    // OU que la longueur de l’argument géneré est plus long
3875
+    // que ce qui est toléré.
3876
+    $cache_contextes_ajax = (defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX);
3877
+    if (!$cache_contextes_ajax) {
3878
+        $env = $c;
3879
+        if (function_exists('gzdeflate') && function_exists('gzinflate')) {
3880
+            $env = gzdeflate($env);
3881
+        }
3882
+        $env = _xor($env);
3883
+        $env = base64_encode($env);
3884
+        $len = strlen($env);
3885
+        // Si l’url est trop longue pour le navigateur
3886
+        $max_len = _CACHE_CONTEXTES_AJAX_SUR_LONGUEUR;
3887
+        if ($len > $max_len) {
3888
+            $cache_contextes_ajax = true;
3889
+            spip_log("Contextes AJAX forces en fichiers !"
3890
+                . " Cela arrive lorsque la valeur du contexte" 
3891
+                . " depasse la longueur maximale autorisee ($max_len). Ici : $len."
3892
+                , _LOG_AVERTISSEMENT);
3893
+        }
3894
+        // Sinon si Suhosin est actif et a une la valeur maximale des variables en GET...
3895
+        elseif (
3896
+            $max_len = @ini_get('suhosin.get.max_value_length')
3897
+            and $max_len < $len
3898
+        ) {
3899
+            $cache_contextes_ajax = true;
3900
+            spip_log("Contextes AJAX forces en fichiers !"
3901
+                . " Cela arrive lorsque la valeur du contexte"
3902
+                . " depasse la longueur maximale autorisee par Suhosin"
3903
+                . " ($max_len) dans 'suhosin.get.max_value_length'. Ici : $len."
3904
+                . " Vous devriez modifier les parametres de Suhosin"
3905
+                . " pour accepter au moins 1024 caracteres.", _LOG_AVERTISSEMENT);
3906
+        } 
3907
+
3908
+    }
3909
+
3910
+    if ($cache_contextes_ajax) {
3911
+        $dir = sous_repertoire(_DIR_CACHE, 'contextes');
3912
+        // stocker les contextes sur disque et ne passer qu'un hash dans l'url
3913
+        $md5 = md5($c);
3914
+        ecrire_fichier("$dir/c$md5", $c);
3915
+        $env = $md5;
3916
+    }
3917
+
3918
+    if ($emboite === null) {
3919
+        return $env;
3920
+    }
3921
+    if (!trim($emboite)) {
3922
+        return "";
3923
+    }
3924
+    // toujours encoder l'url source dans le bloc ajax
3925
+    $r = self();
3926
+    $r = ' data-origin="' . $r . '"';
3927
+    $class = 'ajaxbloc';
3928
+    if ($ajaxid and is_string($ajaxid)) {
3929
+        // ajaxid est normalement conforme a un nom de classe css
3930
+        // on ne verifie pas la conformite, mais on passe entites_html par dessus par precaution
3931
+        $class .= ' ajax-id-' . entites_html($ajaxid);
3932
+    }
3933
+
3934
+    return "<div class='$class' " . "data-ajax-env='$env'$r>\n$emboite</div><!--ajaxbloc-->\n";
3935 3935
 }
3936 3936
 
3937 3937
 /**
@@ -3951,36 +3951,36 @@  discard block
 block discarded – undo
3951 3951
  *   - false : erreur de décodage
3952 3952
  */
3953 3953
 function decoder_contexte_ajax($c, $form = '') {
3954
-	if (!function_exists('calculer_cle_action')) {
3955
-		include_spip("inc/securiser_action");
3956
-	}
3957
-	if (((defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX) or strlen($c) == 32)
3958
-		and $dir = sous_repertoire(_DIR_CACHE, 'contextes')
3959
-		and lire_fichier("$dir/c$c", $contexte)
3960
-	) {
3961
-		$c = $contexte;
3962
-	} else {
3963
-		$c = @base64_decode($c);
3964
-		$c = _xor($c);
3965
-		if (function_exists('gzdeflate') && function_exists('gzinflate')) {
3966
-			$c = @gzinflate($c);
3967
-		}
3968
-	}
3969
-
3970
-	// extraire la signature en debut de contexte
3971
-	// et la verifier avant de deserializer
3972
-	// format : signature:donneesserializees
3973
-	if ($p = strpos($c,":")){
3974
-		$cle = substr($c,0,$p);
3975
-		$c = substr($c,$p+1);
3976
-
3977
-		if ($cle == calculer_cle_action($form . $c)) {
3978
-			$env = @unserialize($c);
3979
-			return $env;
3980
-		}
3981
-	}
3982
-
3983
-	return false;
3954
+    if (!function_exists('calculer_cle_action')) {
3955
+        include_spip("inc/securiser_action");
3956
+    }
3957
+    if (((defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX) or strlen($c) == 32)
3958
+        and $dir = sous_repertoire(_DIR_CACHE, 'contextes')
3959
+        and lire_fichier("$dir/c$c", $contexte)
3960
+    ) {
3961
+        $c = $contexte;
3962
+    } else {
3963
+        $c = @base64_decode($c);
3964
+        $c = _xor($c);
3965
+        if (function_exists('gzdeflate') && function_exists('gzinflate')) {
3966
+            $c = @gzinflate($c);
3967
+        }
3968
+    }
3969
+
3970
+    // extraire la signature en debut de contexte
3971
+    // et la verifier avant de deserializer
3972
+    // format : signature:donneesserializees
3973
+    if ($p = strpos($c,":")){
3974
+        $cle = substr($c,0,$p);
3975
+        $c = substr($c,$p+1);
3976
+
3977
+        if ($cle == calculer_cle_action($form . $c)) {
3978
+            $env = @unserialize($c);
3979
+            return $env;
3980
+        }
3981
+    }
3982
+
3983
+    return false;
3984 3984
 }
3985 3985
 
3986 3986
 
@@ -3998,20 +3998,20 @@  discard block
 block discarded – undo
3998 3998
  *    Message décrypté ou encrypté
3999 3999
  **/
4000 4000
 function _xor($message, $key = null) {
4001
-	if (is_null($key)) {
4002
-		if (!function_exists('calculer_cle_action')) {
4003
-			include_spip("inc/securiser_action");
4004
-		}
4005
-		$key = pack("H*", calculer_cle_action('_xor'));
4006
-	}
4001
+    if (is_null($key)) {
4002
+        if (!function_exists('calculer_cle_action')) {
4003
+            include_spip("inc/securiser_action");
4004
+        }
4005
+        $key = pack("H*", calculer_cle_action('_xor'));
4006
+    }
4007 4007
 
4008
-	$keylen = strlen($key);
4009
-	$messagelen = strlen($message);
4010
-	for ($i = 0; $i < $messagelen; $i++) {
4011
-		$message[$i] = ~($message[$i] ^ $key[$i % $keylen]);
4012
-	}
4008
+    $keylen = strlen($key);
4009
+    $messagelen = strlen($message);
4010
+    for ($i = 0; $i < $messagelen; $i++) {
4011
+        $message[$i] = ~($message[$i] ^ $key[$i % $keylen]);
4012
+    }
4013 4013
 
4014
-	return $message;
4014
+    return $message;
4015 4015
 }
4016 4016
 
4017 4017
 /**
@@ -4074,37 +4074,37 @@  discard block
 block discarded – undo
4074 4074
  *   Code HTML
4075 4075
  */
4076 4076
 function lien_ou_expose($url, $libelle = null, $on = false, $class = "", $title = "", $rel = "", $evt = '') {
4077
-	if ($on) {
4078
-		$bal = 'strong';
4079
-		$class = "";
4080
-		$att = "";
4081
-		// si $on passe la balise et optionnelement une ou ++classe
4082
-		// a.active span.selected.active etc....
4083
-		if (is_string($on) and (strncmp($on, 'a', 1)==0 or strncmp($on, 'span', 4)==0 or strncmp($on, 'strong', 6)==0)){
4084
-			$on = explode(".", $on);
4085
-			// on verifie que c'est exactement une des 3 balises a, span ou strong
4086
-			if (in_array(reset($on), array('a', 'span', 'strong'))){
4087
-				$bal = array_shift($on);
4088
-				$class = implode(" ", $on);
4089
-				if ($bal=="a"){
4090
-					$att = 'href="#" ';
4091
-				}
4092
-			}
4093
-		}
4094
-		$att .= 'class="' . ($class ? attribut_html($class) . ' ' : '') . (defined('_LIEN_OU_EXPOSE_CLASS_ON') ? _LIEN_OU_EXPOSE_CLASS_ON : 'on') . '"';
4095
-	} else {
4096
-		$bal = 'a';
4097
-		$att = "href='$url'"
4098
-			. ($title ? " title='" . attribut_html($title) . "'" : '')
4099
-			. ($class ? " class='" . attribut_html($class) . "'" : '')
4100
-			. ($rel ? " rel='" . attribut_html($rel) . "'" : '')
4101
-			. $evt;
4102
-	}
4103
-	if ($libelle === null) {
4104
-		$libelle = $url;
4105
-	}
4106
-
4107
-	return "<$bal $att>$libelle</$bal>";
4077
+    if ($on) {
4078
+        $bal = 'strong';
4079
+        $class = "";
4080
+        $att = "";
4081
+        // si $on passe la balise et optionnelement une ou ++classe
4082
+        // a.active span.selected.active etc....
4083
+        if (is_string($on) and (strncmp($on, 'a', 1)==0 or strncmp($on, 'span', 4)==0 or strncmp($on, 'strong', 6)==0)){
4084
+            $on = explode(".", $on);
4085
+            // on verifie que c'est exactement une des 3 balises a, span ou strong
4086
+            if (in_array(reset($on), array('a', 'span', 'strong'))){
4087
+                $bal = array_shift($on);
4088
+                $class = implode(" ", $on);
4089
+                if ($bal=="a"){
4090
+                    $att = 'href="#" ';
4091
+                }
4092
+            }
4093
+        }
4094
+        $att .= 'class="' . ($class ? attribut_html($class) . ' ' : '') . (defined('_LIEN_OU_EXPOSE_CLASS_ON') ? _LIEN_OU_EXPOSE_CLASS_ON : 'on') . '"';
4095
+    } else {
4096
+        $bal = 'a';
4097
+        $att = "href='$url'"
4098
+            . ($title ? " title='" . attribut_html($title) . "'" : '')
4099
+            . ($class ? " class='" . attribut_html($class) . "'" : '')
4100
+            . ($rel ? " rel='" . attribut_html($rel) . "'" : '')
4101
+            . $evt;
4102
+    }
4103
+    if ($libelle === null) {
4104
+        $libelle = $url;
4105
+    }
4106
+
4107
+    return "<$bal $att>$libelle</$bal>";
4108 4108
 }
4109 4109
 
4110 4110
 
@@ -4121,37 +4121,37 @@  discard block
 block discarded – undo
4121 4121
  * @return string : la chaine de langue finale en utilisant la fonction _T()
4122 4122
  */
4123 4123
 function singulier_ou_pluriel($nb, $chaine_un, $chaine_plusieurs, $var = 'nb', $vars = array()) {
4124
-	static $local_singulier_ou_pluriel = array();
4124
+    static $local_singulier_ou_pluriel = array();
4125 4125
 
4126
-	// si nb=0 ou pas de $vars valide on retourne une chaine vide, a traiter par un |sinon
4127
-	if (!is_numeric($nb) or $nb == 0) {
4128
-		return "";
4129
-	}
4130
-	if (!is_array($vars)) {
4131
-		return "";
4132
-	}
4126
+    // si nb=0 ou pas de $vars valide on retourne une chaine vide, a traiter par un |sinon
4127
+    if (!is_numeric($nb) or $nb == 0) {
4128
+        return "";
4129
+    }
4130
+    if (!is_array($vars)) {
4131
+        return "";
4132
+    }
4133 4133
 
4134
-	$langue = $GLOBALS['spip_lang'];
4135
-	if (!isset($local_singulier_ou_pluriel[$langue])) {
4136
-		$local_singulier_ou_pluriel[$langue] = false;
4137
-		if ($f = charger_fonction("singulier_ou_pluriel_${langue}", 'inc', true)
4138
-		  or $f = charger_fonction("singulier_ou_pluriel", 'inc', true)) {
4139
-			$local_singulier_ou_pluriel[$langue] = $f;
4140
-		}
4141
-	}
4134
+    $langue = $GLOBALS['spip_lang'];
4135
+    if (!isset($local_singulier_ou_pluriel[$langue])) {
4136
+        $local_singulier_ou_pluriel[$langue] = false;
4137
+        if ($f = charger_fonction("singulier_ou_pluriel_${langue}", 'inc', true)
4138
+          or $f = charger_fonction("singulier_ou_pluriel", 'inc', true)) {
4139
+            $local_singulier_ou_pluriel[$langue] = $f;
4140
+        }
4141
+    }
4142 4142
 
4143
-	// si on a une surcharge on l'utilise
4144
-	if ($local_singulier_ou_pluriel[$langue]) {
4145
-		return ($local_singulier_ou_pluriel[$langue])($nb, $chaine_un, $chaine_plusieurs, $var, $vars);
4146
-	}
4143
+    // si on a une surcharge on l'utilise
4144
+    if ($local_singulier_ou_pluriel[$langue]) {
4145
+        return ($local_singulier_ou_pluriel[$langue])($nb, $chaine_un, $chaine_plusieurs, $var, $vars);
4146
+    }
4147 4147
 
4148
-	// sinon traitement par defaut
4149
-	$vars[$var] = $nb;
4150
-	if ($nb >= 2) {
4151
-		return _T($chaine_plusieurs, $vars);
4152
-	} else {
4153
-		return _T($chaine_un, $vars);
4154
-	}
4148
+    // sinon traitement par defaut
4149
+    $vars[$var] = $nb;
4150
+    if ($nb >= 2) {
4151
+        return _T($chaine_plusieurs, $vars);
4152
+    } else {
4153
+        return _T($chaine_un, $vars);
4154
+    }
4155 4155
 }
4156 4156
 
4157 4157
 
@@ -4179,71 +4179,71 @@  discard block
 block discarded – undo
4179 4179
  */
4180 4180
 function prepare_icone_base($type, $lien, $texte, $fond, $fonction = '', $class = '', $javascript = '') {
4181 4181
 
4182
-	$class_lien = $class_bouton = $class;
4183
-
4184
-	// Normaliser la fonction et compléter la classe en fonction
4185
-	if (in_array($fonction, ['del', 'supprimer.gif'])) {
4186
-		$class_lien .= ' danger';
4187
-		$class_bouton .= ' btn_danger';
4188
-	} elseif ($fonction == 'rien.gif') {
4189
-		$fonction = '';
4190
-	} elseif ($fonction == 'delsafe') {
4191
-		$fonction = 'del';
4192
-	}
4193
-
4194
-	$fond_origine = $fond;
4195
-	// Remappage des icone : article-24.png+new => article-new-24.png
4196
-	if ($icone_renommer = charger_fonction('icone_renommer', 'inc', true)) {
4197
-		list($fond, $fonction) = $icone_renommer($fond, $fonction);
4198
-	}
4199
-
4200
-	// Ajouter le type d'objet dans la classe
4201
-	$objet_type = substr(basename($fond), 0, -4);
4202
-	$class_lien .= " $objet_type";
4203
-	$class_bouton .= " $objet_type";
4204
-
4205
-	// Texte
4206
-	$alt = attribut_html($texte);
4207
-	$title = " title=\"$alt\""; // est-ce pertinent de doubler le alt par un title ?
4208
-
4209
-	// Liens : préparer les classes ajax
4210
-	$ajax = '';
4211
-	if ($type === 'lien') {
4212
-		if (strpos($class_lien, 'ajax') !== false) {
4213
-			$ajax = 'ajax';
4214
-			if (strpos($class_lien, 'preload') !== false) {
4215
-				$ajax .= ' preload';
4216
-			}
4217
-			if (strpos($class_lien, 'nocache') !== false) {
4218
-				$ajax .= ' nocache';
4219
-			}
4220
-			$ajax = " class='$ajax'";
4221
-		}
4222
-	}
4223
-
4224
-	// Repérer la taille et l'ajouter dans la classe
4225
-	$size = 24;
4226
-	if (preg_match("/-([0-9]{1,3})[.](gif|png|svg)$/i", $fond, $match)
4227
-	  or preg_match("/-([0-9]{1,3})([.](gif|png|svg))?$/i", $fond_origine, $match)) {
4228
-		$size = $match[1];
4229
-	}
4230
-	$class_lien .= " s$size";
4231
-	$class_bouton .= " s$size";
4232
-
4233
-	// Icône
4234
-	$icone = http_img_pack($fond, $alt, "width='$size' height='$size'");
4235
-	$icone = "<span class=\"icone-image".($fonction ? " icone-fonction icone-fonction-$fonction" : "") . "\">$icone</span>";
4236
-
4237
-	// Markup final
4238
-	if ($type == 'lien') {
4239
-		return "<span class='icone $class_lien'>"
4240
-		. "<a href='$lien'$title$ajax$javascript>"
4241
-		. $icone
4242
-		. "<b>$texte</b>"
4243
-		. "</a></span>\n";
4244
-	} else {
4245
-		return bouton_action("$icone $texte", $lien, $class_bouton, $javascript, $alt);
4246
-	}
4182
+    $class_lien = $class_bouton = $class;
4183
+
4184
+    // Normaliser la fonction et compléter la classe en fonction
4185
+    if (in_array($fonction, ['del', 'supprimer.gif'])) {
4186
+        $class_lien .= ' danger';
4187
+        $class_bouton .= ' btn_danger';
4188
+    } elseif ($fonction == 'rien.gif') {
4189
+        $fonction = '';
4190
+    } elseif ($fonction == 'delsafe') {
4191
+        $fonction = 'del';
4192
+    }
4193
+
4194
+    $fond_origine = $fond;
4195
+    // Remappage des icone : article-24.png+new => article-new-24.png
4196
+    if ($icone_renommer = charger_fonction('icone_renommer', 'inc', true)) {
4197
+        list($fond, $fonction) = $icone_renommer($fond, $fonction);
4198
+    }
4199
+
4200
+    // Ajouter le type d'objet dans la classe
4201
+    $objet_type = substr(basename($fond), 0, -4);
4202
+    $class_lien .= " $objet_type";
4203
+    $class_bouton .= " $objet_type";
4204
+
4205
+    // Texte
4206
+    $alt = attribut_html($texte);
4207
+    $title = " title=\"$alt\""; // est-ce pertinent de doubler le alt par un title ?
4208
+
4209
+    // Liens : préparer les classes ajax
4210
+    $ajax = '';
4211
+    if ($type === 'lien') {
4212
+        if (strpos($class_lien, 'ajax') !== false) {
4213
+            $ajax = 'ajax';
4214
+            if (strpos($class_lien, 'preload') !== false) {
4215
+                $ajax .= ' preload';
4216
+            }
4217
+            if (strpos($class_lien, 'nocache') !== false) {
4218
+                $ajax .= ' nocache';
4219
+            }
4220
+            $ajax = " class='$ajax'";
4221
+        }
4222
+    }
4223
+
4224
+    // Repérer la taille et l'ajouter dans la classe
4225
+    $size = 24;
4226
+    if (preg_match("/-([0-9]{1,3})[.](gif|png|svg)$/i", $fond, $match)
4227
+      or preg_match("/-([0-9]{1,3})([.](gif|png|svg))?$/i", $fond_origine, $match)) {
4228
+        $size = $match[1];
4229
+    }
4230
+    $class_lien .= " s$size";
4231
+    $class_bouton .= " s$size";
4232
+
4233
+    // Icône
4234
+    $icone = http_img_pack($fond, $alt, "width='$size' height='$size'");
4235
+    $icone = "<span class=\"icone-image".($fonction ? " icone-fonction icone-fonction-$fonction" : "") . "\">$icone</span>";
4236
+
4237
+    // Markup final
4238
+    if ($type == 'lien') {
4239
+        return "<span class='icone $class_lien'>"
4240
+        . "<a href='$lien'$title$ajax$javascript>"
4241
+        . $icone
4242
+        . "<b>$texte</b>"
4243
+        . "</a></span>\n";
4244
+    } else {
4245
+        return bouton_action("$icone $texte", $lien, $class_bouton, $javascript, $alt);
4246
+    }
4247 4247
 }
4248 4248
 
4249 4249
 /**
@@ -4267,7 +4267,7 @@  discard block
 block discarded – undo
4267 4267
  *     Code HTML du lien
4268 4268
  **/
4269 4269
 function icone_base($lien, $texte, $fond, $fonction = "", $class = "", $javascript = "") {
4270
-	return prepare_icone_base('lien', $lien, $texte, $fond, $fonction, $class, $javascript);
4270
+    return prepare_icone_base('lien', $lien, $texte, $fond, $fonction, $class, $javascript);
4271 4271
 }
4272 4272
 
4273 4273
 /**
@@ -4302,7 +4302,7 @@  discard block
 block discarded – undo
4302 4302
  *     Code HTML du lien
4303 4303
  **/
4304 4304
 function filtre_icone_verticale_dist($lien, $texte, $fond, $fonction = "", $class = "", $javascript = "") {
4305
-	return icone_base($lien, $texte, $fond, $fonction, "verticale $class", $javascript);
4305
+    return icone_base($lien, $texte, $fond, $fonction, "verticale $class", $javascript);
4306 4306
 }
4307 4307
 
4308 4308
 /**
@@ -4347,7 +4347,7 @@  discard block
 block discarded – undo
4347 4347
  *     Code HTML du lien
4348 4348
  **/
4349 4349
 function filtre_icone_horizontale_dist($lien, $texte, $fond, $fonction = "", $class = "", $javascript = "") {
4350
-	return icone_base($lien, $texte, $fond, $fonction, "horizontale $class", $javascript);
4350
+    return icone_base($lien, $texte, $fond, $fonction, "horizontale $class", $javascript);
4351 4351
 }
4352 4352
 
4353 4353
 /**
@@ -4378,7 +4378,7 @@  discard block
 block discarded – undo
4378 4378
  *     Code HTML du lien
4379 4379
  **/
4380 4380
 function filtre_bouton_action_horizontal_dist($lien, $texte, $fond, $fonction = "", $class = "", $confirm = "") {
4381
-	return prepare_icone_base('bouton', $lien, $texte, $fond, $fonction, $class, $confirm);
4381
+    return prepare_icone_base('bouton', $lien, $texte, $fond, $fonction, $class, $confirm);
4382 4382
 }
4383 4383
 
4384 4384
 /**
@@ -4409,7 +4409,7 @@  discard block
 block discarded – undo
4409 4409
  *     Code HTML du lien
4410 4410
  */
4411 4411
 function filtre_icone_dist($lien, $texte, $fond, $align = "", $fonction = "", $class = "", $javascript = "") {
4412
-	return icone_base($lien, $texte, $fond, $fonction, "verticale $align $class", $javascript);
4412
+    return icone_base($lien, $texte, $fond, $fonction, "verticale $align $class", $javascript);
4413 4413
 }
4414 4414
 
4415 4415
 
@@ -4457,26 +4457,26 @@  discard block
 block discarded – undo
4457 4457
  * @return string Code CSS
4458 4458
  */
4459 4459
 function bando_images_background() {
4460
-	include_spip('inc/bandeau');
4461
-	// recuperer tous les boutons et leurs images
4462
-	$boutons = definir_barre_boutons(definir_barre_contexte(), true, false);
4460
+    include_spip('inc/bandeau');
4461
+    // recuperer tous les boutons et leurs images
4462
+    $boutons = definir_barre_boutons(definir_barre_contexte(), true, false);
4463 4463
 
4464
-	$res = "";
4465
-	foreach ($boutons as $page => $detail) {
4466
-		$selecteur = (in_array($page, array('outils_rapides', 'outils_collaboratifs')) ? "" : ".navigation_avec_icones ");
4467
-		if (is_array($detail->sousmenu)) {
4468
-			foreach ($detail->sousmenu as $souspage => $sousdetail) {
4469
-				if ($sousdetail->icone and strlen(trim($sousdetail->icone))) {
4470
-					// recherche de déclinaisons .svg même pour les -new- …
4471
-					$img = http_img_pack($sousdetail->icone, '', '', '', ['variante_svg_si_possible' => true, 'chemin_image' => false]);
4472
-					$img = extraire_attribut($img, 'src');
4473
-					$res .= "\n$selecteur.bando2_$souspage {background-image:url($img);}";
4474
-				}
4475
-			}
4476
-		}
4477
-	}
4464
+    $res = "";
4465
+    foreach ($boutons as $page => $detail) {
4466
+        $selecteur = (in_array($page, array('outils_rapides', 'outils_collaboratifs')) ? "" : ".navigation_avec_icones ");
4467
+        if (is_array($detail->sousmenu)) {
4468
+            foreach ($detail->sousmenu as $souspage => $sousdetail) {
4469
+                if ($sousdetail->icone and strlen(trim($sousdetail->icone))) {
4470
+                    // recherche de déclinaisons .svg même pour les -new- …
4471
+                    $img = http_img_pack($sousdetail->icone, '', '', '', ['variante_svg_si_possible' => true, 'chemin_image' => false]);
4472
+                    $img = extraire_attribut($img, 'src');
4473
+                    $res .= "\n$selecteur.bando2_$souspage {background-image:url($img);}";
4474
+                }
4475
+            }
4476
+        }
4477
+    }
4478 4478
 
4479
-	return $res;
4479
+    return $res;
4480 4480
 }
4481 4481
 
4482 4482
 /**
@@ -4501,27 +4501,27 @@  discard block
 block discarded – undo
4501 4501
  */
4502 4502
 function bouton_action($libelle, $url, $class = '', $confirm = '', $title = '', $callback = '') {
4503 4503
 
4504
-	// Classes : dispatcher `ajax` sur le formulaire
4505
-	$class_form = '';
4506
-	if (strpos($class, 'ajax') !== false) {
4507
-		$class_form = 'ajax';
4508
-		$class = str_replace('ajax', '', $class);
4509
-	}
4510
-	$class_btn = 'submit ' . trim($class);
4504
+    // Classes : dispatcher `ajax` sur le formulaire
4505
+    $class_form = '';
4506
+    if (strpos($class, 'ajax') !== false) {
4507
+        $class_form = 'ajax';
4508
+        $class = str_replace('ajax', '', $class);
4509
+    }
4510
+    $class_btn = 'submit ' . trim($class);
4511 4511
 
4512
-	if ($confirm) {
4513
-		$confirm = "confirm(\"" . attribut_html($confirm) . "\")";
4514
-		if ($callback) {
4515
-			$callback = "$confirm?($callback):false";
4516
-		} else {
4517
-			$callback = $confirm;
4518
-		}
4519
-	}
4520
-	$onclick = $callback ? " onclick='return " . addcslashes($callback, "'") . "'" : "";
4521
-	$title = $title ? " title='$title'" : '';
4512
+    if ($confirm) {
4513
+        $confirm = "confirm(\"" . attribut_html($confirm) . "\")";
4514
+        if ($callback) {
4515
+            $callback = "$confirm?($callback):false";
4516
+        } else {
4517
+            $callback = $confirm;
4518
+        }
4519
+    }
4520
+    $onclick = $callback ? " onclick='return " . addcslashes($callback, "'") . "'" : "";
4521
+    $title = $title ? " title='$title'" : '';
4522 4522
 
4523
-	return "<form class='bouton_action_post $class_form' method='post' action='$url'><div>" . form_hidden($url)
4524
-	. "<button type='submit' class='$class_btn'$title$onclick>$libelle</button></div></form>";
4523
+    return "<form class='bouton_action_post $class_form' method='post' action='$url'><div>" . form_hidden($url)
4524
+    . "<button type='submit' class='$class_btn'$title$onclick>$libelle</button></div></form>";
4525 4525
 }
4526 4526
 
4527 4527
 /**
@@ -4544,89 +4544,89 @@  discard block
 block discarded – undo
4544 4544
  * @return string
4545 4545
  */
4546 4546
 function generer_info_entite($id_objet, $type_objet, $info, $etoile = '', $params = []) {
4547
-	static $trouver_table = null;
4548
-	static $objets;
4549
-
4550
-	// On verifie qu'on a tout ce qu'il faut
4551
-	$id_objet = intval($id_objet);
4552
-	if (!($id_objet and $type_objet and $info)) {
4553
-		return '';
4554
-	}
4555
-
4556
-	// si on a deja note que l'objet n'existe pas, ne pas aller plus loin
4557
-	if (isset($objets[$type_objet]) and $objets[$type_objet] === false) {
4558
-		return '';
4559
-	}
4560
-
4561
-	// Si on demande l'url, on retourne direct la fonction
4562
-	if ($info == 'url') {
4563
-		return generer_url_entite($id_objet, $type_objet, ...$params);
4564
-	}
4565
-
4566
-	// Sinon on va tout chercher dans la table et on garde en memoire
4567
-	$demande_titre = ($info === 'titre');
4568
-	$demande_introduction = ($info === 'introduction');
4569
-
4570
-	// 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
4571
-	if (!isset($objets[$type_objet][$id_objet])
4572
-		or
4573
-		($demande_titre and !isset($objets[$type_objet][$id_objet]['titre']))
4574
-	) {
4575
-		if (!$trouver_table) {
4576
-			$trouver_table = charger_fonction('trouver_table', 'base');
4577
-		}
4578
-		$desc = $trouver_table(table_objet_sql($type_objet));
4579
-		if (!$desc) {
4580
-			return $objets[$type_objet] = false;
4581
-		}
4582
-
4583
-		// Si on demande le titre, on le gere en interne
4584
-		$champ_titre = "";
4585
-		if ($demande_titre) {
4586
-			// si pas de titre declare mais champ titre, il sera peuple par le select *
4587
-			$champ_titre = (!empty($desc['titre'])) ? ', ' . $desc['titre'] : '';
4588
-		}
4589
-		include_spip('base/abstract_sql');
4590
-		include_spip('base/connect_sql');
4591
-		$objets[$type_objet][$id_objet] = sql_fetsel(
4592
-			'*' . $champ_titre,
4593
-			$desc['table_sql'],
4594
-			id_table_objet($type_objet) . ' = ' . intval($id_objet)
4595
-		);
4596
-
4597
-		// Toujours noter la longueur d'introduction, même si pas demandé cette fois-ci
4598
-		$objets[$type_objet]['introduction_longueur'] = $desc['introduction_longueur'] ?? null;
4599
-	}
4600
-
4601
-	// Pour les fonction generer_xxx, si on demande l'introduction,
4602
-	// ajouter la longueur au début des params supplémentaires
4603
-	if ($demande_introduction) {
4604
-		$introduction_longueur = $objets[$type_objet]['introduction_longueur'];
4605
-		array_unshift($params, $introduction_longueur);
4606
-	}
4607
-
4608
-	// Si la fonction generer_TRUC_TYPE existe, on l'utilise pour formater $info_generee
4609
-	if ($generer = charger_fonction("generer_${info}_${type_objet}", '', true)) {
4610
-		$info_generee = $generer($id_objet, $objets[$type_objet][$id_objet], ...$params);
4611
-	} // Si la fonction generer_TRUC_entite existe, on l'utilise pour formater $info_generee
4612
-	else {
4613
-		if ($generer = charger_fonction("generer_${info}_entite", '', true)) {
4614
-			$info_generee = $generer($id_objet, $type_objet, $objets[$type_objet][$id_objet], ...$params);
4615
-		} // Sinon on prend directement le champ SQL tel quel
4616
-		else {
4617
-			$info_generee = (isset($objets[$type_objet][$id_objet][$info]) ? $objets[$type_objet][$id_objet][$info] : '');
4618
-		}
4619
-	}
4620
-
4621
-	// On va ensuite appliquer les traitements automatiques si besoin
4622
-	if (!$etoile) {
4623
-		// FIXME: on fournit un ENV minimum avec id et type et connect=''
4624
-		// mais ce fonctionnement est a ameliorer !
4625
-		$info_generee = appliquer_traitement_champ($info_generee, $info, table_objet($type_objet),
4626
-			array('id_objet' => $id_objet, 'objet' => $type_objet, ''));
4627
-	}
4628
-
4629
-	return $info_generee;
4547
+    static $trouver_table = null;
4548
+    static $objets;
4549
+
4550
+    // On verifie qu'on a tout ce qu'il faut
4551
+    $id_objet = intval($id_objet);
4552
+    if (!($id_objet and $type_objet and $info)) {
4553
+        return '';
4554
+    }
4555
+
4556
+    // si on a deja note que l'objet n'existe pas, ne pas aller plus loin
4557
+    if (isset($objets[$type_objet]) and $objets[$type_objet] === false) {
4558
+        return '';
4559
+    }
4560
+
4561
+    // Si on demande l'url, on retourne direct la fonction
4562
+    if ($info == 'url') {
4563
+        return generer_url_entite($id_objet, $type_objet, ...$params);
4564
+    }
4565
+
4566
+    // Sinon on va tout chercher dans la table et on garde en memoire
4567
+    $demande_titre = ($info === 'titre');
4568
+    $demande_introduction = ($info === 'introduction');
4569
+
4570
+    // 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
4571
+    if (!isset($objets[$type_objet][$id_objet])
4572
+        or
4573
+        ($demande_titre and !isset($objets[$type_objet][$id_objet]['titre']))
4574
+    ) {
4575
+        if (!$trouver_table) {
4576
+            $trouver_table = charger_fonction('trouver_table', 'base');
4577
+        }
4578
+        $desc = $trouver_table(table_objet_sql($type_objet));
4579
+        if (!$desc) {
4580
+            return $objets[$type_objet] = false;
4581
+        }
4582
+
4583
+        // Si on demande le titre, on le gere en interne
4584
+        $champ_titre = "";
4585
+        if ($demande_titre) {
4586
+            // si pas de titre declare mais champ titre, il sera peuple par le select *
4587
+            $champ_titre = (!empty($desc['titre'])) ? ', ' . $desc['titre'] : '';
4588
+        }
4589
+        include_spip('base/abstract_sql');
4590
+        include_spip('base/connect_sql');
4591
+        $objets[$type_objet][$id_objet] = sql_fetsel(
4592
+            '*' . $champ_titre,
4593
+            $desc['table_sql'],
4594
+            id_table_objet($type_objet) . ' = ' . intval($id_objet)
4595
+        );
4596
+
4597
+        // Toujours noter la longueur d'introduction, même si pas demandé cette fois-ci
4598
+        $objets[$type_objet]['introduction_longueur'] = $desc['introduction_longueur'] ?? null;
4599
+    }
4600
+
4601
+    // Pour les fonction generer_xxx, si on demande l'introduction,
4602
+    // ajouter la longueur au début des params supplémentaires
4603
+    if ($demande_introduction) {
4604
+        $introduction_longueur = $objets[$type_objet]['introduction_longueur'];
4605
+        array_unshift($params, $introduction_longueur);
4606
+    }
4607
+
4608
+    // Si la fonction generer_TRUC_TYPE existe, on l'utilise pour formater $info_generee
4609
+    if ($generer = charger_fonction("generer_${info}_${type_objet}", '', true)) {
4610
+        $info_generee = $generer($id_objet, $objets[$type_objet][$id_objet], ...$params);
4611
+    } // Si la fonction generer_TRUC_entite existe, on l'utilise pour formater $info_generee
4612
+    else {
4613
+        if ($generer = charger_fonction("generer_${info}_entite", '', true)) {
4614
+            $info_generee = $generer($id_objet, $type_objet, $objets[$type_objet][$id_objet], ...$params);
4615
+        } // Sinon on prend directement le champ SQL tel quel
4616
+        else {
4617
+            $info_generee = (isset($objets[$type_objet][$id_objet][$info]) ? $objets[$type_objet][$id_objet][$info] : '');
4618
+        }
4619
+    }
4620
+
4621
+    // On va ensuite appliquer les traitements automatiques si besoin
4622
+    if (!$etoile) {
4623
+        // FIXME: on fournit un ENV minimum avec id et type et connect=''
4624
+        // mais ce fonctionnement est a ameliorer !
4625
+        $info_generee = appliquer_traitement_champ($info_generee, $info, table_objet($type_objet),
4626
+            array('id_objet' => $id_objet, 'objet' => $type_objet, ''));
4627
+    }
4628
+
4629
+    return $info_generee;
4630 4630
 }
4631 4631
 
4632 4632
 /**
@@ -4659,36 +4659,36 @@  discard block
 block discarded – undo
4659 4659
  */
4660 4660
 function generer_introduction_entite($id_objet, $type_objet, $ligne_sql, $introduction_longueur = null, $longueur_ou_suite = null, $suite = null, $connect = '') {
4661 4661
 
4662
-	$descriptif = $ligne_sql['descriptif'] ?? '';
4663
-	$texte = $ligne_sql['texte'] ?? '';
4664
-	// En absence de descriptif, on se rabat sur chapo + texte
4665
-	if (isset($ligne_sql['chapo'])) {
4666
-		$chapo = $ligne_sql['chapo'];
4667
-		$texte = strlen($descriptif) ?
4668
-			'' :
4669
-			"$chapo \n\n $texte";
4670
-	}
4662
+    $descriptif = $ligne_sql['descriptif'] ?? '';
4663
+    $texte = $ligne_sql['texte'] ?? '';
4664
+    // En absence de descriptif, on se rabat sur chapo + texte
4665
+    if (isset($ligne_sql['chapo'])) {
4666
+        $chapo = $ligne_sql['chapo'];
4667
+        $texte = strlen($descriptif) ?
4668
+            '' :
4669
+            "$chapo \n\n $texte";
4670
+    }
4671 4671
 
4672
-	// Longueur en paramètre, sinon celle renseignée dans la description de l'objet, sinon valeur en dur
4673
-	if (!intval($longueur_ou_suite)) {
4674
-		$longueur = intval($introduction_longueur ?: 600);
4675
-	} else {
4676
-		$longueur = intval($longueur_ou_suite);
4677
-	}
4672
+    // Longueur en paramètre, sinon celle renseignée dans la description de l'objet, sinon valeur en dur
4673
+    if (!intval($longueur_ou_suite)) {
4674
+        $longueur = intval($introduction_longueur ?: 600);
4675
+    } else {
4676
+        $longueur = intval($longueur_ou_suite);
4677
+    }
4678 4678
 
4679
-	// On peut optionnellement passer la suite en 1er paramètre de la balise
4680
-	// Ex : #INTRODUCTION{...}
4681
-	if (
4682
-		is_null($suite)
4683
-		and !intval($longueur_ou_suite)
4684
-	) {
4685
-		$suite = $longueur_ou_suite;
4686
-	}
4679
+    // On peut optionnellement passer la suite en 1er paramètre de la balise
4680
+    // Ex : #INTRODUCTION{...}
4681
+    if (
4682
+        is_null($suite)
4683
+        and !intval($longueur_ou_suite)
4684
+    ) {
4685
+        $suite = $longueur_ou_suite;
4686
+    }
4687 4687
 
4688
-	$f = chercher_filtre('introduction');
4689
-	$introduction = $f($descriptif, $texte, $longueur, $connect, $suite);
4688
+    $f = chercher_filtre('introduction');
4689
+    $introduction = $f($descriptif, $texte, $longueur, $connect, $suite);
4690 4690
 
4691
-	return $introduction;
4691
+    return $introduction;
4692 4692
 }
4693 4693
 
4694 4694
 /**
@@ -4702,44 +4702,44 @@  discard block
 block discarded – undo
4702 4702
  * @return string
4703 4703
  */
4704 4704
 function appliquer_traitement_champ($texte, $champ, $table_objet = '', $env = array(), $connect = '') {
4705
-	if (!$champ) {
4706
-		return $texte;
4707
-	}
4705
+    if (!$champ) {
4706
+        return $texte;
4707
+    }
4708 4708
 	
4709
-	// On charge toujours les filtres de texte car la majorité des traitements les utilisent
4710
-	// et il ne faut pas partir du principe que c'est déjà chargé (form ajax, etc)
4711
-	include_spip('inc/texte');
4709
+    // On charge toujours les filtres de texte car la majorité des traitements les utilisent
4710
+    // et il ne faut pas partir du principe que c'est déjà chargé (form ajax, etc)
4711
+    include_spip('inc/texte');
4712 4712
 	
4713
-	$champ = strtoupper($champ);
4714
-	$traitements = isset($GLOBALS['table_des_traitements'][$champ]) ? $GLOBALS['table_des_traitements'][$champ] : false;
4715
-	if (!$traitements or !is_array($traitements)) {
4716
-		return $texte;
4717
-	}
4713
+    $champ = strtoupper($champ);
4714
+    $traitements = isset($GLOBALS['table_des_traitements'][$champ]) ? $GLOBALS['table_des_traitements'][$champ] : false;
4715
+    if (!$traitements or !is_array($traitements)) {
4716
+        return $texte;
4717
+    }
4718 4718
 
4719
-	$traitement = '';
4720
-	if ($table_objet and (!isset($traitements[0]) or count($traitements) > 1)) {
4721
-		// necessaire pour prendre en charge les vieux appels avec un table_objet_sql en 3e arg
4722
-		$table_objet = table_objet($table_objet);
4723
-		if (isset($traitements[$table_objet])) {
4724
-			$traitement = $traitements[$table_objet];
4725
-		}
4726
-	}
4727
-	if (!$traitement and isset($traitements[0])) {
4728
-		$traitement = $traitements[0];
4729
-	}
4730
-	// (sinon prendre le premier de la liste par defaut ?)
4719
+    $traitement = '';
4720
+    if ($table_objet and (!isset($traitements[0]) or count($traitements) > 1)) {
4721
+        // necessaire pour prendre en charge les vieux appels avec un table_objet_sql en 3e arg
4722
+        $table_objet = table_objet($table_objet);
4723
+        if (isset($traitements[$table_objet])) {
4724
+            $traitement = $traitements[$table_objet];
4725
+        }
4726
+    }
4727
+    if (!$traitement and isset($traitements[0])) {
4728
+        $traitement = $traitements[0];
4729
+    }
4730
+    // (sinon prendre le premier de la liste par defaut ?)
4731 4731
 
4732
-	if (!$traitement) {
4733
-		return $texte;
4734
-	}
4732
+    if (!$traitement) {
4733
+        return $texte;
4734
+    }
4735 4735
 
4736
-	$traitement = str_replace('%s', "'" . texte_script($texte) . "'", $traitement);
4736
+    $traitement = str_replace('%s', "'" . texte_script($texte) . "'", $traitement);
4737 4737
 
4738
-	// Fournir $connect et $Pile[0] au traitement si besoin
4739
-	$Pile = array(0 => $env);
4740
-	eval("\$texte = $traitement;");
4738
+    // Fournir $connect et $Pile[0] au traitement si besoin
4739
+    $Pile = array(0 => $env);
4740
+    eval("\$texte = $traitement;");
4741 4741
 
4742
-	return $texte;
4742
+    return $texte;
4743 4743
 }
4744 4744
 
4745 4745
 
@@ -4753,21 +4753,21 @@  discard block
 block discarded – undo
4753 4753
  * @return string
4754 4754
  */
4755 4755
 function generer_lien_entite($id_objet, $objet, $longueur = 80, $connect = null) {
4756
-	include_spip('inc/liens');
4757
-	$titre = traiter_raccourci_titre($id_objet, $objet, $connect);
4758
-	// lorsque l'objet n'est plus declare (plugin desactive par exemple)
4759
-	// le raccourcis n'est plus valide
4760
-	$titre = isset($titre['titre']) ? typo($titre['titre']) : '';
4761
-	// on essaye avec generer_info_entite ?
4762
-	if (!strlen($titre) and !$connect) {
4763
-		$titre = generer_info_entite($id_objet, $objet, 'titre');
4764
-	}
4765
-	if (!strlen($titre)) {
4766
-		$titre = _T('info_sans_titre');
4767
-	}
4768
-	$url = generer_url_entite($id_objet, $objet, '', '', $connect);
4756
+    include_spip('inc/liens');
4757
+    $titre = traiter_raccourci_titre($id_objet, $objet, $connect);
4758
+    // lorsque l'objet n'est plus declare (plugin desactive par exemple)
4759
+    // le raccourcis n'est plus valide
4760
+    $titre = isset($titre['titre']) ? typo($titre['titre']) : '';
4761
+    // on essaye avec generer_info_entite ?
4762
+    if (!strlen($titre) and !$connect) {
4763
+        $titre = generer_info_entite($id_objet, $objet, 'titre');
4764
+    }
4765
+    if (!strlen($titre)) {
4766
+        $titre = _T('info_sans_titre');
4767
+    }
4768
+    $url = generer_url_entite($id_objet, $objet, '', '', $connect);
4769 4769
 
4770
-	return "<a href='$url' class='$objet'>" . couper($titre, $longueur) . "</a>";
4770
+    return "<a href='$url' class='$objet'>" . couper($titre, $longueur) . "</a>";
4771 4771
 }
4772 4772
 
4773 4773
 
@@ -4784,15 +4784,15 @@  discard block
 block discarded – undo
4784 4784
  * @return string
4785 4785
  */
4786 4786
 function wrap($texte, $wrap) {
4787
-	$balises = extraire_balises($wrap);
4788
-	if (preg_match_all(",<([a-z]\w*)\b[^>]*>,UimsS", $wrap, $regs, PREG_PATTERN_ORDER)) {
4789
-		$texte = $wrap . $texte;
4790
-		$regs = array_reverse($regs[1]);
4791
-		$wrap = "</" . implode("></", $regs) . ">";
4792
-		$texte = $texte . $wrap;
4793
-	}
4787
+    $balises = extraire_balises($wrap);
4788
+    if (preg_match_all(",<([a-z]\w*)\b[^>]*>,UimsS", $wrap, $regs, PREG_PATTERN_ORDER)) {
4789
+        $texte = $wrap . $texte;
4790
+        $regs = array_reverse($regs[1]);
4791
+        $wrap = "</" . implode("></", $regs) . ">";
4792
+        $texte = $texte . $wrap;
4793
+    }
4794 4794
 
4795
-	return $texte;
4795
+    return $texte;
4796 4796
 }
4797 4797
 
4798 4798
 
@@ -4812,43 +4812,43 @@  discard block
 block discarded – undo
4812 4812
  * @return array|mixed|string
4813 4813
  */
4814 4814
 function filtre_print_dist($u, $join = "<br />", $indent = 0) {
4815
-	if (is_string($u)) {
4816
-		$u = typo($u);
4815
+    if (is_string($u)) {
4816
+        $u = typo($u);
4817 4817
 
4818
-		return $u;
4819
-	}
4818
+        return $u;
4819
+    }
4820 4820
 
4821
-	// caster $u en array si besoin
4822
-	if (is_object($u)) {
4823
-		$u = (array)$u;
4824
-	}
4821
+    // caster $u en array si besoin
4822
+    if (is_object($u)) {
4823
+        $u = (array)$u;
4824
+    }
4825 4825
 
4826
-	if (is_array($u)) {
4827
-		$out = "";
4828
-		// toutes les cles sont numeriques ?
4829
-		// et aucun enfant n'est un tableau
4830
-		// liste simple separee par des virgules
4831
-		$numeric_keys = array_map('is_numeric', array_keys($u));
4832
-		$array_values = array_map('is_array', $u);
4833
-		$object_values = array_map('is_object', $u);
4834
-		if (array_sum($numeric_keys) == count($numeric_keys)
4835
-			and !array_sum($array_values)
4836
-			and !array_sum($object_values)
4837
-		) {
4838
-			return join(", ", array_map('filtre_print_dist', $u));
4839
-		}
4826
+    if (is_array($u)) {
4827
+        $out = "";
4828
+        // toutes les cles sont numeriques ?
4829
+        // et aucun enfant n'est un tableau
4830
+        // liste simple separee par des virgules
4831
+        $numeric_keys = array_map('is_numeric', array_keys($u));
4832
+        $array_values = array_map('is_array', $u);
4833
+        $object_values = array_map('is_object', $u);
4834
+        if (array_sum($numeric_keys) == count($numeric_keys)
4835
+            and !array_sum($array_values)
4836
+            and !array_sum($object_values)
4837
+        ) {
4838
+            return join(", ", array_map('filtre_print_dist', $u));
4839
+        }
4840 4840
 
4841
-		// sinon on passe a la ligne et on indente
4842
-		$i_str = str_pad("", $indent, " ");
4843
-		foreach ($u as $k => $v) {
4844
-			$out .= $join . $i_str . "$k: " . filtre_print_dist($v, $join, $indent + 2);
4845
-		}
4841
+        // sinon on passe a la ligne et on indente
4842
+        $i_str = str_pad("", $indent, " ");
4843
+        foreach ($u as $k => $v) {
4844
+            $out .= $join . $i_str . "$k: " . filtre_print_dist($v, $join, $indent + 2);
4845
+        }
4846 4846
 
4847
-		return $out;
4848
-	}
4847
+        return $out;
4848
+    }
4849 4849
 
4850
-	// on sait pas quoi faire...
4851
-	return $u;
4850
+    // on sait pas quoi faire...
4851
+    return $u;
4852 4852
 }
4853 4853
 
4854 4854
 
@@ -4861,10 +4861,10 @@  discard block
 block discarded – undo
4861 4861
  * @return string|array
4862 4862
  */
4863 4863
 function objet_info($objet, $info) {
4864
-	$table = table_objet_sql($objet);
4865
-	$infos = lister_tables_objets_sql($table);
4864
+    $table = table_objet_sql($objet);
4865
+    $infos = lister_tables_objets_sql($table);
4866 4866
 
4867
-	return (isset($infos[$info]) ? $infos[$info] : '');
4867
+    return (isset($infos[$info]) ? $infos[$info] : '');
4868 4868
 }
4869 4869
 
4870 4870
 /**
@@ -4879,11 +4879,11 @@  discard block
 block discarded – undo
4879 4879
  *     Texte traduit du comptage, tel que '3 articles'
4880 4880
  */
4881 4881
 function objet_afficher_nb($nb, $objet) {
4882
-	if (!$nb) {
4883
-		return _T(objet_info($objet, 'info_aucun_objet'));
4884
-	} else {
4885
-		return _T(objet_info($objet, $nb == 1 ? 'info_1_objet' : 'info_nb_objets'), array('nb' => $nb));
4886
-	}
4882
+    if (!$nb) {
4883
+        return _T(objet_info($objet, 'info_aucun_objet'));
4884
+    } else {
4885
+        return _T(objet_info($objet, $nb == 1 ? 'info_1_objet' : 'info_nb_objets'), array('nb' => $nb));
4886
+    }
4887 4887
 }
4888 4888
 
4889 4889
 /**
@@ -4895,11 +4895,11 @@  discard block
 block discarded – undo
4895 4895
  * @return string
4896 4896
  */
4897 4897
 function objet_icone($objet, $taille = 24, $class='') {
4898
-	$icone = objet_info($objet, 'icone_objet') . "-" . $taille . ".png";
4899
-	$icone = chemin_image($icone);
4900
-	$balise_img = charger_filtre('balise_img');
4898
+    $icone = objet_info($objet, 'icone_objet') . "-" . $taille . ".png";
4899
+    $icone = chemin_image($icone);
4900
+    $balise_img = charger_filtre('balise_img');
4901 4901
 
4902
-	return $icone ? $balise_img($icone, _T(objet_info($objet, 'texte_objet')), $class, $taille) : '';
4902
+    return $icone ? $balise_img($icone, _T(objet_info($objet, 'texte_objet')), $class, $taille) : '';
4903 4903
 }
4904 4904
 
4905 4905
 /**
@@ -4920,12 +4920,12 @@  discard block
 block discarded – undo
4920 4920
  * @return string
4921 4921
  */
4922 4922
 function objet_T($objet, $chaine, $args = array(), $options = array()){
4923
-	$chaine = explode(':',$chaine);
4924
-	if ($t = _T($objet . ':' . end($chaine), $args, array_merge($options, array('force'=>false)))) {
4925
-		return $t;
4926
-	}
4927
-	$chaine = implode(':',$chaine);
4928
-	return _T($chaine, $args, $options);
4923
+    $chaine = explode(':',$chaine);
4924
+    if ($t = _T($objet . ':' . end($chaine), $args, array_merge($options, array('force'=>false)))) {
4925
+        return $t;
4926
+    }
4927
+    $chaine = implode(':',$chaine);
4928
+    return _T($chaine, $args, $options);
4929 4929
 }
4930 4930
 
4931 4931
 /**
@@ -4939,17 +4939,17 @@  discard block
 block discarded – undo
4939 4939
  * @return string      Code HTML
4940 4940
  */
4941 4941
 function insert_head_css_conditionnel($flux) {
4942
-	if (strpos($flux, '<!-- insert_head_css -->') === false
4943
-		and $p = strpos($flux, '<!-- insert_head -->')
4944
-	) {
4945
-		// plutot avant le premier js externe (jquery) pour etre non bloquant
4946
-		if ($p1 = stripos($flux, '<script src=') and $p1 < $p) {
4947
-			$p = $p1;
4948
-		}
4949
-		$flux = substr_replace($flux, pipeline('insert_head_css', '<!-- insert_head_css -->'), $p, 0);
4950
-	}
4942
+    if (strpos($flux, '<!-- insert_head_css -->') === false
4943
+        and $p = strpos($flux, '<!-- insert_head -->')
4944
+    ) {
4945
+        // plutot avant le premier js externe (jquery) pour etre non bloquant
4946
+        if ($p1 = stripos($flux, '<script src=') and $p1 < $p) {
4947
+            $p = $p1;
4948
+        }
4949
+        $flux = substr_replace($flux, pipeline('insert_head_css', '<!-- insert_head_css -->'), $p, 0);
4950
+    }
4951 4951
 
4952
-	return $flux;
4952
+    return $flux;
4953 4953
 }
4954 4954
 
4955 4955
 /**
@@ -4972,69 +4972,69 @@  discard block
 block discarded – undo
4972 4972
  * @return string
4973 4973
  */
4974 4974
 function produire_fond_statique($fond, $contexte = array(), $options = array(), $connect = '') {
4975
-	if (isset($contexte['format'])) {
4976
-		$extension = $contexte['format'];
4977
-		unset($contexte['format']);
4978
-	} else {
4979
-		$extension = 'html';
4980
-		if (preg_match(',[.](css|js|json|xml|svg)$,', $fond, $m)) {
4981
-			$extension = $m[1];
4982
-		}
4983
-	}
4984
-	// recuperer le contenu produit par le squelette
4985
-	$options['raw'] = true;
4986
-	$cache = recuperer_fond($fond, $contexte, $options, $connect);
4987
-
4988
-	// calculer le nom de la css
4989
-	$dir_var = sous_repertoire(_DIR_VAR, 'cache-' . $extension);
4990
-	$nom_safe = preg_replace(",\W,", '_', str_replace('.', '_', $fond));
4991
-	$contexte_implicite = calculer_contexte_implicite();
4992
-
4993
-	// par defaut on hash selon les contextes qui sont a priori moins variables
4994
-	// mais on peut hasher selon le contenu a la demande, si plusieurs contextes produisent un meme contenu
4995
-	// reduit la variabilite du nom et donc le nombre de css concatenees possibles in fine
4996
-	if (isset($options['hash_on_content']) and $options['hash_on_content']) {
4997
-		$hash = md5($contexte_implicite['host'] . '::'. $cache);
4998
-	}
4999
-	else {
5000
-		unset($contexte_implicite['notes']); // pas pertinent pour signaler un changeemnt de contenu pour des css/js
5001
-		ksort($contexte);
5002
-		$hash = md5($fond . json_encode($contexte_implicite) . json_encode($contexte) . $connect);
5003
-	}
5004
-	$filename = $dir_var . $extension . "dyn-$nom_safe-" . substr($hash, 0, 8) . ".$extension";
5005
-
5006
-	// mettre a jour le fichier si il n'existe pas
5007
-	// ou trop ancien
5008
-	// le dernier fichier produit est toujours suffixe par .last
5009
-	// et recopie sur le fichier cible uniquement si il change
5010
-	if (!file_exists($filename)
5011
-		or !file_exists($filename . ".last")
5012
-		or (isset($cache['lastmodified']) and $cache['lastmodified'] and filemtime($filename . ".last") < $cache['lastmodified'])
5013
-		or (defined('_VAR_MODE') and _VAR_MODE == 'recalcul')
5014
-	) {
5015
-		$contenu = $cache['texte'];
5016
-		// passer les urls en absolu si c'est une css
5017
-		if ($extension == "css") {
5018
-			$contenu = urls_absolues_css($contenu,
5019
-				test_espace_prive() ? generer_url_ecrire('accueil') : generer_url_public($fond));
5020
-		}
5021
-
5022
-		$comment = '';
5023
-		// ne pas insérer de commentaire sur certains formats
5024
-		if (!in_array($extension, ['json', 'xml', 'svg'])) {
5025
-			$comment = "/* #PRODUIRE{fond=$fond";
5026
-			foreach ($contexte as $k => $v) {
5027
-				$comment .= ",$k=$v";
5028
-			}
5029
-			// pas de date dans le commentaire car sinon ca invalide le md5 et force la maj
5030
-			// mais on peut mettre un md5 du contenu, ce qui donne un aperu rapide si la feuille a change ou non
5031
-			$comment .= "}\n   md5:" . md5($contenu) . " */\n";
5032
-		}
5033
-		// et ecrire le fichier si il change
5034
-		ecrire_fichier_calcule_si_modifie($filename, $comment . $contenu, false, true);
5035
-	}
5036
-
5037
-	return timestamp($filename);
4975
+    if (isset($contexte['format'])) {
4976
+        $extension = $contexte['format'];
4977
+        unset($contexte['format']);
4978
+    } else {
4979
+        $extension = 'html';
4980
+        if (preg_match(',[.](css|js|json|xml|svg)$,', $fond, $m)) {
4981
+            $extension = $m[1];
4982
+        }
4983
+    }
4984
+    // recuperer le contenu produit par le squelette
4985
+    $options['raw'] = true;
4986
+    $cache = recuperer_fond($fond, $contexte, $options, $connect);
4987
+
4988
+    // calculer le nom de la css
4989
+    $dir_var = sous_repertoire(_DIR_VAR, 'cache-' . $extension);
4990
+    $nom_safe = preg_replace(",\W,", '_', str_replace('.', '_', $fond));
4991
+    $contexte_implicite = calculer_contexte_implicite();
4992
+
4993
+    // par defaut on hash selon les contextes qui sont a priori moins variables
4994
+    // mais on peut hasher selon le contenu a la demande, si plusieurs contextes produisent un meme contenu
4995
+    // reduit la variabilite du nom et donc le nombre de css concatenees possibles in fine
4996
+    if (isset($options['hash_on_content']) and $options['hash_on_content']) {
4997
+        $hash = md5($contexte_implicite['host'] . '::'. $cache);
4998
+    }
4999
+    else {
5000
+        unset($contexte_implicite['notes']); // pas pertinent pour signaler un changeemnt de contenu pour des css/js
5001
+        ksort($contexte);
5002
+        $hash = md5($fond . json_encode($contexte_implicite) . json_encode($contexte) . $connect);
5003
+    }
5004
+    $filename = $dir_var . $extension . "dyn-$nom_safe-" . substr($hash, 0, 8) . ".$extension";
5005
+
5006
+    // mettre a jour le fichier si il n'existe pas
5007
+    // ou trop ancien
5008
+    // le dernier fichier produit est toujours suffixe par .last
5009
+    // et recopie sur le fichier cible uniquement si il change
5010
+    if (!file_exists($filename)
5011
+        or !file_exists($filename . ".last")
5012
+        or (isset($cache['lastmodified']) and $cache['lastmodified'] and filemtime($filename . ".last") < $cache['lastmodified'])
5013
+        or (defined('_VAR_MODE') and _VAR_MODE == 'recalcul')
5014
+    ) {
5015
+        $contenu = $cache['texte'];
5016
+        // passer les urls en absolu si c'est une css
5017
+        if ($extension == "css") {
5018
+            $contenu = urls_absolues_css($contenu,
5019
+                test_espace_prive() ? generer_url_ecrire('accueil') : generer_url_public($fond));
5020
+        }
5021
+
5022
+        $comment = '';
5023
+        // ne pas insérer de commentaire sur certains formats
5024
+        if (!in_array($extension, ['json', 'xml', 'svg'])) {
5025
+            $comment = "/* #PRODUIRE{fond=$fond";
5026
+            foreach ($contexte as $k => $v) {
5027
+                $comment .= ",$k=$v";
5028
+            }
5029
+            // pas de date dans le commentaire car sinon ca invalide le md5 et force la maj
5030
+            // mais on peut mettre un md5 du contenu, ce qui donne un aperu rapide si la feuille a change ou non
5031
+            $comment .= "}\n   md5:" . md5($contenu) . " */\n";
5032
+        }
5033
+        // et ecrire le fichier si il change
5034
+        ecrire_fichier_calcule_si_modifie($filename, $comment . $contenu, false, true);
5035
+    }
5036
+
5037
+    return timestamp($filename);
5038 5038
 }
5039 5039
 
5040 5040
 /**
@@ -5047,14 +5047,14 @@  discard block
 block discarded – undo
5047 5047
  *    $fichier auquel on a ajouté le timestamp
5048 5048
  */
5049 5049
 function timestamp($fichier) {
5050
-	if (!$fichier
5051
-		or !file_exists($fichier)
5052
-		or !$m = filemtime($fichier)
5053
-	) {
5054
-		return $fichier;
5055
-	}
5050
+    if (!$fichier
5051
+        or !file_exists($fichier)
5052
+        or !$m = filemtime($fichier)
5053
+    ) {
5054
+        return $fichier;
5055
+    }
5056 5056
 
5057
-	return "$fichier?$m";
5057
+    return "$fichier?$m";
5058 5058
 }
5059 5059
 
5060 5060
 /**
@@ -5064,11 +5064,11 @@  discard block
 block discarded – undo
5064 5064
  * @return string
5065 5065
  */
5066 5066
 function supprimer_timestamp($url) {
5067
-	if (strpos($url, "?") === false) {
5068
-		return $url;
5069
-	}
5067
+    if (strpos($url, "?") === false) {
5068
+        return $url;
5069
+    }
5070 5070
 
5071
-	return preg_replace(",\?[[:digit:]]+$,", "", $url);
5071
+    return preg_replace(",\?[[:digit:]]+$,", "", $url);
5072 5072
 }
5073 5073
 
5074 5074
 /**
@@ -5083,9 +5083,9 @@  discard block
 block discarded – undo
5083 5083
  * @return string
5084 5084
  */
5085 5085
 function filtre_nettoyer_titre_email_dist($titre) {
5086
-	include_spip('inc/envoyer_mail');
5086
+    include_spip('inc/envoyer_mail');
5087 5087
 
5088
-	return nettoyer_titre_email($titre);
5088
+    return nettoyer_titre_email($titre);
5089 5089
 }
5090 5090
 
5091 5091
 /**
@@ -5107,19 +5107,19 @@  discard block
 block discarded – undo
5107 5107
  * @return string
5108 5108
  */
5109 5109
 function filtre_chercher_rubrique_dist(
5110
-	$titre,
5111
-	$id_objet,
5112
-	$id_parent,
5113
-	$objet,
5114
-	$id_secteur,
5115
-	$restreint,
5116
-	$actionable = false,
5117
-	$retour_sans_cadre = false
5110
+    $titre,
5111
+    $id_objet,
5112
+    $id_parent,
5113
+    $objet,
5114
+    $id_secteur,
5115
+    $restreint,
5116
+    $actionable = false,
5117
+    $retour_sans_cadre = false
5118 5118
 ) {
5119
-	include_spip('inc/filtres_ecrire');
5119
+    include_spip('inc/filtres_ecrire');
5120 5120
 
5121
-	return chercher_rubrique($titre, $id_objet, $id_parent, $objet, $id_secteur, $restreint, $actionable,
5122
-		$retour_sans_cadre);
5121
+    return chercher_rubrique($titre, $id_objet, $id_parent, $objet, $id_secteur, $restreint, $actionable,
5122
+        $retour_sans_cadre);
5123 5123
 }
5124 5124
 
5125 5125
 /**
@@ -5148,56 +5148,56 @@  discard block
 block discarded – undo
5148 5148
  *     Chaîne vide si l'accès est autorisé
5149 5149
  */
5150 5150
 function sinon_interdire_acces($ok = false, $url = '', $statut = 0, $message = null) {
5151
-	if ($ok) {
5152
-		return '';
5153
-	}
5154
-
5155
-	// Vider tous les tampons
5156
-	$level = @ob_get_level();
5157
-	while ($level--) {
5158
-		@ob_end_clean();
5159
-	}
5160
-
5161
-	include_spip('inc/headers');
5162
-
5163
-	// S'il y a une URL, on redirige (si pas de statut, la fonction mettra 302 par défaut)
5164
-	if ($url) {
5165
-		redirige_par_entete($url, '', $statut);
5166
-	}
5167
-
5168
-	// ecriture simplifiee avec message en 3eme argument (= statut 403)
5169
-	if (!is_numeric($statut) and is_null($message)) {
5170
-		$message = $statut;
5171
-		$statut = 0;
5172
-	}
5173
-	if (!$message) {
5174
-		$message = '';
5175
-	}
5176
-	$statut = intval($statut);
5177
-
5178
-	// Si on est dans l'espace privé, on génère du 403 Forbidden par defaut ou du 404
5179
-	if (test_espace_prive()) {
5180
-		if (!$statut or !in_array($statut, array(404, 403))) {
5181
-			$statut = 403;
5182
-		}
5183
-		http_status(403);
5184
-		$echec = charger_fonction('403', 'exec');
5185
-		$echec($message);
5186
-	} else {
5187
-		// Sinon dans l'espace public on redirige vers une 404 par défaut, car elle toujours présente normalement
5188
-		if (!$statut) {
5189
-			$statut = 404;
5190
-		}
5191
-		// Dans tous les cas on modifie l'entité avec ce qui est demandé
5192
-		http_status($statut);
5193
-		// Si le statut est une erreur et qu'il n'y a pas de redirection on va chercher le squelette du même nom
5194
-		if ($statut >= 400) {
5195
-			echo recuperer_fond("$statut", array('erreur' => $message));
5196
-		}
5197
-	}
5198
-
5199
-
5200
-	exit;
5151
+    if ($ok) {
5152
+        return '';
5153
+    }
5154
+
5155
+    // Vider tous les tampons
5156
+    $level = @ob_get_level();
5157
+    while ($level--) {
5158
+        @ob_end_clean();
5159
+    }
5160
+
5161
+    include_spip('inc/headers');
5162
+
5163
+    // S'il y a une URL, on redirige (si pas de statut, la fonction mettra 302 par défaut)
5164
+    if ($url) {
5165
+        redirige_par_entete($url, '', $statut);
5166
+    }
5167
+
5168
+    // ecriture simplifiee avec message en 3eme argument (= statut 403)
5169
+    if (!is_numeric($statut) and is_null($message)) {
5170
+        $message = $statut;
5171
+        $statut = 0;
5172
+    }
5173
+    if (!$message) {
5174
+        $message = '';
5175
+    }
5176
+    $statut = intval($statut);
5177
+
5178
+    // Si on est dans l'espace privé, on génère du 403 Forbidden par defaut ou du 404
5179
+    if (test_espace_prive()) {
5180
+        if (!$statut or !in_array($statut, array(404, 403))) {
5181
+            $statut = 403;
5182
+        }
5183
+        http_status(403);
5184
+        $echec = charger_fonction('403', 'exec');
5185
+        $echec($message);
5186
+    } else {
5187
+        // Sinon dans l'espace public on redirige vers une 404 par défaut, car elle toujours présente normalement
5188
+        if (!$statut) {
5189
+            $statut = 404;
5190
+        }
5191
+        // Dans tous les cas on modifie l'entité avec ce qui est demandé
5192
+        http_status($statut);
5193
+        // Si le statut est une erreur et qu'il n'y a pas de redirection on va chercher le squelette du même nom
5194
+        if ($statut >= 400) {
5195
+            echo recuperer_fond("$statut", array('erreur' => $message));
5196
+        }
5197
+    }
5198
+
5199
+
5200
+    exit;
5201 5201
 }
5202 5202
 
5203 5203
 /**
@@ -5208,11 +5208,11 @@  discard block
 block discarded – undo
5208 5208
  * @return string
5209 5209
  */
5210 5210
 function filtre_compacte_dist($source, $format = null) {
5211
-	if (function_exists('compacte')) {
5212
-		return compacte($source, $format);
5213
-	}
5211
+    if (function_exists('compacte')) {
5212
+        return compacte($source, $format);
5213
+    }
5214 5214
 
5215
-	return $source;
5215
+    return $source;
5216 5216
 }
5217 5217
 
5218 5218
 
@@ -5224,31 +5224,31 @@  discard block
 block discarded – undo
5224 5224
  * @return string
5225 5225
  */
5226 5226
 function spip_affiche_mot_de_passe_masque($passe, $afficher_partiellement = false, $portion_pourcent = null) {
5227
-	$l = strlen($passe);
5228
-
5229
-	if ($l<=8 or !$afficher_partiellement){
5230
-		if (!$l) {
5231
-			return ''; // montrer qu'il y a pas de mot de passe si il y en a pas
5232
-		}
5233
-		return str_pad('',$afficher_partiellement ? $l : 16,'*');
5234
-	}
5235
-
5236
-	if (is_null($portion_pourcent)) {
5237
-		if (!defined('_SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT')) {
5238
-			define('_SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT', 20); // 20%
5239
-		}
5240
-		$portion_pourcent = _SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT;
5241
-	}
5242
-	if ($portion_pourcent >= 100) {
5243
-		return $passe;
5244
-	}
5245
-	$e = intval(ceil($l * $portion_pourcent / 100 / 2));
5246
-	$e = max($e, 0);
5247
-	$mid = str_pad('',$l-2*$e,'*');
5248
-	if ($e>0 and strlen($mid)>8){
5249
-		$mid = '***...***';
5250
-	}
5251
-	return substr($passe,0,$e) . $mid . ($e > 0 ? substr($passe,-$e) : '');
5227
+    $l = strlen($passe);
5228
+
5229
+    if ($l<=8 or !$afficher_partiellement){
5230
+        if (!$l) {
5231
+            return ''; // montrer qu'il y a pas de mot de passe si il y en a pas
5232
+        }
5233
+        return str_pad('',$afficher_partiellement ? $l : 16,'*');
5234
+    }
5235
+
5236
+    if (is_null($portion_pourcent)) {
5237
+        if (!defined('_SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT')) {
5238
+            define('_SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT', 20); // 20%
5239
+        }
5240
+        $portion_pourcent = _SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT;
5241
+    }
5242
+    if ($portion_pourcent >= 100) {
5243
+        return $passe;
5244
+    }
5245
+    $e = intval(ceil($l * $portion_pourcent / 100 / 2));
5246
+    $e = max($e, 0);
5247
+    $mid = str_pad('',$l-2*$e,'*');
5248
+    if ($e>0 and strlen($mid)>8){
5249
+        $mid = '***...***';
5250
+    }
5251
+    return substr($passe,0,$e) . $mid . ($e > 0 ? substr($passe,-$e) : '');
5252 5252
 }
5253 5253
 
5254 5254
 
@@ -5269,64 +5269,64 @@  discard block
 block discarded – undo
5269 5269
  */
5270 5270
 function identifiant_slug($texte, $type = '', $options = array()) {
5271 5271
 
5272
-	$original = $texte;
5273
-	$separateur = (isset($options['separateur'])?$options['separateur']:'_');
5274
-	$longueur_maxi = (isset($options['longueur_maxi'])?$options['longueur_maxi']:60);
5275
-	$longueur_mini = (isset($options['longueur_mini'])?$options['longueur_mini']:0);
5272
+    $original = $texte;
5273
+    $separateur = (isset($options['separateur'])?$options['separateur']:'_');
5274
+    $longueur_maxi = (isset($options['longueur_maxi'])?$options['longueur_maxi']:60);
5275
+    $longueur_mini = (isset($options['longueur_mini'])?$options['longueur_mini']:0);
5276 5276
 
5277
-	if (!function_exists('translitteration')) {
5278
-		include_spip('inc/charsets');
5279
-	}
5277
+    if (!function_exists('translitteration')) {
5278
+        include_spip('inc/charsets');
5279
+    }
5280 5280
 
5281
-	// pas de balise html
5282
-	if (strpos($texte, '<') !== false) {
5283
-		$texte = strip_tags($texte);
5284
-	}
5285
-	if (strpos($texte, '&') !== false) {
5286
-		$texte = unicode2charset($texte);
5287
-	}
5288
-	// On enlève les espaces indésirables
5289
-	$texte = trim($texte);
5281
+    // pas de balise html
5282
+    if (strpos($texte, '<') !== false) {
5283
+        $texte = strip_tags($texte);
5284
+    }
5285
+    if (strpos($texte, '&') !== false) {
5286
+        $texte = unicode2charset($texte);
5287
+    }
5288
+    // On enlève les espaces indésirables
5289
+    $texte = trim($texte);
5290 5290
 
5291
-	// On enlève les accents et cie
5292
-	$texte = translitteration($texte);
5291
+    // On enlève les accents et cie
5292
+    $texte = translitteration($texte);
5293 5293
 
5294
-	// On remplace tout ce qui n'est pas un mot par un séparateur
5295
-	$texte = preg_replace(',[\W_]+,ms', $separateur, $texte);
5294
+    // On remplace tout ce qui n'est pas un mot par un séparateur
5295
+    $texte = preg_replace(',[\W_]+,ms', $separateur, $texte);
5296 5296
 
5297
-	// nettoyer les doubles occurences du separateur si besoin
5298
-	while (strpos($texte, "$separateur$separateur") !== false) {
5299
-		$texte = str_replace("$separateur$separateur", $separateur, $texte);
5300
-	}
5297
+    // nettoyer les doubles occurences du separateur si besoin
5298
+    while (strpos($texte, "$separateur$separateur") !== false) {
5299
+        $texte = str_replace("$separateur$separateur", $separateur, $texte);
5300
+    }
5301 5301
 
5302
-	// pas de separateur au debut ni a la fin
5303
-	$texte = trim($texte, $separateur);
5302
+    // pas de separateur au debut ni a la fin
5303
+    $texte = trim($texte, $separateur);
5304 5304
 
5305
-	// en minuscules
5306
-	$texte = strtolower($texte);
5305
+    // en minuscules
5306
+    $texte = strtolower($texte);
5307 5307
 
5308
-	switch ($type) {
5309
-		case 'class':
5310
-		case 'id':
5311
-		case 'anchor':
5312
-			if (preg_match(',^\d,', $texte)) {
5313
-				$texte = substr($type, 0, 1).$texte;
5314
-			}
5315
-	}
5308
+    switch ($type) {
5309
+        case 'class':
5310
+        case 'id':
5311
+        case 'anchor':
5312
+            if (preg_match(',^\d,', $texte)) {
5313
+                $texte = substr($type, 0, 1).$texte;
5314
+            }
5315
+    }
5316 5316
 
5317
-	if (strlen($texte)>$longueur_maxi) {
5318
-		$texte = substr($texte, 0, $longueur_maxi);
5319
-	}
5317
+    if (strlen($texte)>$longueur_maxi) {
5318
+        $texte = substr($texte, 0, $longueur_maxi);
5319
+    }
5320 5320
 
5321
-	if (strlen($texte) < $longueur_mini and $longueur_mini < $longueur_maxi) {
5322
-		if (preg_match(',^\d,', $texte)) {
5323
-			$texte = ($type ? substr($type,0,1) : "s") . $texte;
5324
-		}
5325
-		$texte .= $separateur . md5($original);
5326
-		$texte = substr($texte, 0, $longueur_mini);
5327
-	}
5321
+    if (strlen($texte) < $longueur_mini and $longueur_mini < $longueur_maxi) {
5322
+        if (preg_match(',^\d,', $texte)) {
5323
+            $texte = ($type ? substr($type,0,1) : "s") . $texte;
5324
+        }
5325
+        $texte .= $separateur . md5($original);
5326
+        $texte = substr($texte, 0, $longueur_mini);
5327
+    }
5328 5328
 
5329
-	return $texte;
5329
+    return $texte;
5330 5330
 }
5331 5331
 
5332 5332
 
@@ -5347,14 +5347,14 @@  discard block
 block discarded – undo
5347 5347
  * @exemple `<:info_maximum|label_nettoyer:>`
5348 5348
  */
5349 5349
 function label_nettoyer(string $text, bool $ucfirst = true) : string {
5350
-	$label = rtrim($text, " : \t\n\r\0\x0B\xc2\xa0");
5351
-	if ($label and $label[-1] === ';') {
5352
-		$label = preg_replace("#(\&nbsp;)+$#", "", $label);
5353
-	}
5354
-	if ($ucfirst) {
5355
-		$label = spip_ucfirst($label);
5356
-	}
5357
-	return $label;
5350
+    $label = rtrim($text, " : \t\n\r\0\x0B\xc2\xa0");
5351
+    if ($label and $label[-1] === ';') {
5352
+        $label = preg_replace("#(\&nbsp;)+$#", "", $label);
5353
+    }
5354
+    if ($ucfirst) {
5355
+        $label = spip_ucfirst($label);
5356
+    }
5357
+    return $label;
5358 5358
 }
5359 5359
 
5360 5360
 /**
@@ -5367,8 +5367,8 @@  discard block
 block discarded – undo
5367 5367
  * @exemple `<:info_maximum|label_ponctuer:>`
5368 5368
  */
5369 5369
 function label_ponctuer(string $text, bool $ucfirst = true) : string {
5370
-	$label = label_nettoyer($text, $ucfirst);
5371
-	return _T('label_ponctuer', ['label' => $label]);
5370
+    $label = label_nettoyer($text, $ucfirst);
5371
+    return _T('label_ponctuer', ['label' => $label]);
5372 5372
 }
5373 5373
 
5374 5374
 
@@ -5381,19 +5381,19 @@  discard block
 block discarded – undo
5381 5381
  * @return array
5382 5382
  */
5383 5383
 function helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, $fonction) {
5384
-	if (!in_array($fonction, ['objet_lister_parents', 'objet_lister_enfants', 'objet_lister_parents_par_type', 'objet_lister_enfants_par_type'])) {
5385
-		return [];
5386
-	}
5384
+    if (!in_array($fonction, ['objet_lister_parents', 'objet_lister_enfants', 'objet_lister_parents_par_type', 'objet_lister_enfants_par_type'])) {
5385
+        return [];
5386
+    }
5387 5387
 
5388
-	// compatibilite signature inversee
5389
-	if (is_numeric($objet) and !is_numeric($id_objet)) {
5390
-		list($objet, $id_objet) = [$id_objet, $objet];
5391
-	}
5388
+    // compatibilite signature inversee
5389
+    if (is_numeric($objet) and !is_numeric($id_objet)) {
5390
+        list($objet, $id_objet) = [$id_objet, $objet];
5391
+    }
5392 5392
 
5393
-	if (!function_exists($fonction)) {
5394
-		include_spip('base/objets');
5395
-	}
5396
-	return $fonction($objet, $id_objet);
5393
+    if (!function_exists($fonction)) {
5394
+        include_spip('base/objets');
5395
+    }
5396
+    return $fonction($objet, $id_objet);
5397 5397
 }
5398 5398
 
5399 5399
 
@@ -5408,7 +5408,7 @@  discard block
 block discarded – undo
5408 5408
  * @return array
5409 5409
  */
5410 5410
 function filtre_objet_lister_parents_dist($objet, $id_objet) {
5411
-	return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_parents');
5411
+    return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_parents');
5412 5412
 }
5413 5413
 
5414 5414
 /**
@@ -5422,7 +5422,7 @@  discard block
 block discarded – undo
5422 5422
  * @return array
5423 5423
  */
5424 5424
 function filtre_objet_lister_parents_par_type_dist($objet, $id_objet) {
5425
-	return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_parents_par_type');
5425
+    return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_parents_par_type');
5426 5426
 }
5427 5427
 
5428 5428
 /**
@@ -5436,7 +5436,7 @@  discard block
 block discarded – undo
5436 5436
  * @return array
5437 5437
  */
5438 5438
 function filtre_objet_lister_enfants_dist($objet, $id_objet) {
5439
-	return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_enfants');
5439
+    return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_enfants');
5440 5440
 }
5441 5441
 
5442 5442
 /**
@@ -5450,6 +5450,6 @@  discard block
 block discarded – undo
5450 5450
  * @return array
5451 5451
  */
5452 5452
 function filtre_objet_lister_enfants_par_type_dist($objet, $id_objet) {
5453
-	return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_enfants_par_type');
5453
+    return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_enfants_par_type');
5454 5454
 }
5455 5455
 
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
 	}
@@ -3371,19 +3371,19 @@  discard block
 block discarded – undo
3371 3371
 
3372 3372
 	$img_file = $img;
3373 3373
 	if ($p = strpos($img_file, '?')) {
3374
-		$img_file = substr($img_file,0, $p);
3374
+		$img_file = substr($img_file, 0, $p);
3375 3375
 	}
3376 3376
 	if (!isset($options['chemin_image']) or $options['chemin_image'] == true) {
3377 3377
 		$img_file = chemin_image($img);
3378 3378
 	}
3379 3379
 	else {
3380
-		if (!isset($options['variante_svg_si_possible']) or $options['variante_svg_si_possible'] == true){
3380
+		if (!isset($options['variante_svg_si_possible']) or $options['variante_svg_si_possible'] == true) {
3381 3381
 			// on peut fournir une icone generique -xx.svg qui fera le job dans toutes les tailles, et qui est prioritaire sur le png
3382 3382
 			// si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png
3383 3383
 			if (preg_match(',-(\d+)[.](png|gif|svg)$,', $img_file, $m)
3384
-			  and $variante_svg_generique = substr($img_file, 0, -strlen($m[0])) . "-xx.svg"
3384
+			  and $variante_svg_generique = substr($img_file, 0, -strlen($m[0]))."-xx.svg"
3385 3385
 			  and file_exists($variante_svg_generique)) {
3386
-				if ($variante_svg_size = substr($variante_svg_generique,0,-6) . $m[1] . ".svg" and file_exists($variante_svg_size)) {
3386
+				if ($variante_svg_size = substr($variante_svg_generique, 0, -6).$m[1].".svg" and file_exists($variante_svg_size)) {
3387 3387
 					$img_file = $variante_svg_size;
3388 3388
 				}
3389 3389
 				else {
@@ -3408,7 +3408,7 @@  discard block
 block discarded – undo
3408 3408
 				return "";
3409 3409
 			}
3410 3410
 		}
3411
-		$atts .= " width='" . $largeur . "' height='" . $hauteur . "'";
3411
+		$atts .= " width='".$largeur."' height='".$hauteur."'";
3412 3412
 	}
3413 3413
 
3414 3414
 	if (file_exists($img_file)) {
@@ -3417,15 +3417,15 @@  discard block
 block discarded – undo
3417 3417
 	if ($alt === false) {
3418 3418
 		$alt = '';
3419 3419
 	}
3420
-	elseif($alt or $alt==='') {
3420
+	elseif ($alt or $alt === '') {
3421 3421
 		$alt = " alt='".attribut_html($alt)."'";
3422 3422
 	}
3423 3423
 	else {
3424 3424
 		$alt = " alt='".attribut_html($title)."'";
3425 3425
 	}
3426 3426
 	return "<img src='$img_file'$alt"
3427
-	. ($title ? ' title="' . attribut_html($title) . '"' : '')
3428
-	. " " . ltrim($atts)
3427
+	. ($title ? ' title="'.attribut_html($title).'"' : '')
3428
+	. " ".ltrim($atts)
3429 3429
 	. " />";
3430 3430
 }
3431 3431
 
@@ -3437,12 +3437,12 @@  discard block
 block discarded – undo
3437 3437
  * @param string $size
3438 3438
  * @return string
3439 3439
  */
3440
-function http_style_background($img, $att = '', $size=null) {
3441
-	if ($size and is_numeric($size)){
3442
-		$size = trim($size) . "px";
3440
+function http_style_background($img, $att = '', $size = null) {
3441
+	if ($size and is_numeric($size)) {
3442
+		$size = trim($size)."px";
3443 3443
 	}
3444
-	return " style='background" .
3445
-		($att ? "" : "-image") . ": url(\"" . chemin_image($img) . "\")" . ($att ? (' ' . $att) : '') . ";"
3444
+	return " style='background".
3445
+		($att ? "" : "-image").": url(\"".chemin_image($img)."\")".($att ? (' '.$att) : '').";"
3446 3446
 		. ($size ? "background-size:{$size};" : '')
3447 3447
 		. "'";
3448 3448
 }
@@ -3468,7 +3468,7 @@  discard block
 block discarded – undo
3468 3468
 			$args[] = $maybe_size;
3469 3469
 			$maybe_size = null;
3470 3470
 		}
3471
-		while (count($args)<2) {
3471
+		while (count($args) < 2) {
3472 3472
 			$args[] = null; // default alt or class
3473 3473
 		}
3474 3474
 		$args[] = $maybe_size;
@@ -3478,7 +3478,7 @@  discard block
 block discarded – undo
3478 3478
 
3479 3479
 function helper_filtre_balise_img_svg_size($img, $size) {
3480 3480
 	// si size est de la forme '@2x' c'est un coeff multiplicateur sur la densite
3481
-	if (strpos($size, '@') === 0 and substr($size,-1) === 'x') {
3481
+	if (strpos($size, '@') === 0 and substr($size, -1) === 'x') {
3482 3482
 		$coef = floatval(substr($size, 1, -1));
3483 3483
 		list($h, $w) = taille_image($img);
3484 3484
 		$height = intval(round($h / $coef));
@@ -3533,7 +3533,7 @@  discard block
 block discarded – undo
3533 3533
  * @return string
3534 3534
  *     Code HTML de la balise IMG
3535 3535
  */
3536
-function filtre_balise_img_dist($img, $alt = '', $class = null, $size=null) {
3536
+function filtre_balise_img_dist($img, $alt = '', $class = null, $size = null) {
3537 3537
 
3538 3538
 	list($alt, $class, $size) = helper_filtre_balise_img_svg_arguments($alt, $class, $size);
3539 3539
 
@@ -3552,7 +3552,7 @@  discard block
 block discarded – undo
3552 3552
 		}
3553 3553
 	}
3554 3554
 	else {
3555
-		$img = http_img_pack($img, $alt, $class ? " class='" . attribut_html($class) . "'" : '', '',
3555
+		$img = http_img_pack($img, $alt, $class ? " class='".attribut_html($class)."'" : '', '',
3556 3556
 				array('chemin_image' => false, 'utiliser_suffixe_size' => false));
3557 3557
 		if (is_null($alt)) {
3558 3558
 			$img = vider_attribut($img, 'alt');
@@ -3598,16 +3598,16 @@  discard block
 block discarded – undo
3598 3598
  * @return string
3599 3599
  *     Code HTML de la balise SVG
3600 3600
  */
3601
-function filtre_balise_svg_dist($img, $alt = '', $class = null, $size=null) {
3601
+function filtre_balise_svg_dist($img, $alt = '', $class = null, $size = null) {
3602 3602
 
3603 3603
 	$img = trim($img);
3604 3604
 	$img_file = $img;
3605
-	if (strpos($img, '<svg') === false){
3606
-		if ($p = strpos($img_file, '?')){
3605
+	if (strpos($img, '<svg') === false) {
3606
+		if ($p = strpos($img_file, '?')) {
3607 3607
 			$img_file = substr($img_file, 0, $p);
3608 3608
 		}
3609 3609
 
3610
-		if (!$img_file or !$svg = file_get_contents($img_file)){
3610
+		if (!$img_file or !$svg = file_get_contents($img_file)) {
3611 3611
 			return '';
3612 3612
 		}
3613 3613
 	}
@@ -3622,7 +3622,7 @@  discard block
 block discarded – undo
3622 3622
 	$balise_svg_source = $balise_svg;
3623 3623
 
3624 3624
 	// entete XML à supprimer
3625
-	$svg = preg_replace(',^\s*<\?xml[^>]*\?' . '>,', '', $svg);
3625
+	$svg = preg_replace(',^\s*<\?xml[^>]*\?'.'>,', '', $svg);
3626 3626
 
3627 3627
 	// IE est toujours mon ami
3628 3628
 	$balise_svg = inserer_attribut($balise_svg, 'focusable', 'false');
@@ -3638,11 +3638,11 @@  discard block
 block discarded – undo
3638 3638
 	}
3639 3639
 
3640 3640
 	// regler le alt
3641
-	if ($alt){
3641
+	if ($alt) {
3642 3642
 		$balise_svg = inserer_attribut($balise_svg, 'role', 'img');
3643
-		$id = "img-svg-title-" . substr(md5("$img_file:$svg:$alt"),0,4);
3643
+		$id = "img-svg-title-".substr(md5("$img_file:$svg:$alt"), 0, 4);
3644 3644
 		$balise_svg = inserer_attribut($balise_svg, 'aria-labelledby', $id);
3645
-		$title = "<title id=\"$id\">" . entites_html($alt)."</title>\n";
3645
+		$title = "<title id=\"$id\">".entites_html($alt)."</title>\n";
3646 3646
 		$balise_svg .= $title;
3647 3647
 	}
3648 3648
 	else {
@@ -3689,7 +3689,7 @@  discard block
 block discarded – undo
3689 3689
 	$texte = '';
3690 3690
 	if (is_array($tableau)) {
3691 3691
 		foreach ($tableau as $k => $v) {
3692
-			$res = recuperer_fond('modeles/' . $modele,
3692
+			$res = recuperer_fond('modeles/'.$modele,
3693 3693
 				array_merge(array('cle' => $k), (is_array($v) ? $v : array('valeur' => $v)))
3694 3694
 			);
3695 3695
 			$texte .= $res;
@@ -3866,7 +3866,7 @@  discard block
 block discarded – undo
3866 3866
 	}
3867 3867
 
3868 3868
 	$c = serialize($c);
3869
-	$cle = calculer_cle_action($form . $c);
3869
+	$cle = calculer_cle_action($form.$c);
3870 3870
 	$c = "$cle:$c";
3871 3871
 
3872 3872
 	// on ne stocke pas les contextes dans des fichiers en cache
@@ -3923,15 +3923,15 @@  discard block
 block discarded – undo
3923 3923
 	}
3924 3924
 	// toujours encoder l'url source dans le bloc ajax
3925 3925
 	$r = self();
3926
-	$r = ' data-origin="' . $r . '"';
3926
+	$r = ' data-origin="'.$r.'"';
3927 3927
 	$class = 'ajaxbloc';
3928 3928
 	if ($ajaxid and is_string($ajaxid)) {
3929 3929
 		// ajaxid est normalement conforme a un nom de classe css
3930 3930
 		// on ne verifie pas la conformite, mais on passe entites_html par dessus par precaution
3931
-		$class .= ' ajax-id-' . entites_html($ajaxid);
3931
+		$class .= ' ajax-id-'.entites_html($ajaxid);
3932 3932
 	}
3933 3933
 
3934
-	return "<div class='$class' " . "data-ajax-env='$env'$r>\n$emboite</div><!--ajaxbloc-->\n";
3934
+	return "<div class='$class' "."data-ajax-env='$env'$r>\n$emboite</div><!--ajaxbloc-->\n";
3935 3935
 }
3936 3936
 
3937 3937
 /**
@@ -3970,11 +3970,11 @@  discard block
 block discarded – undo
3970 3970
 	// extraire la signature en debut de contexte
3971 3971
 	// et la verifier avant de deserializer
3972 3972
 	// format : signature:donneesserializees
3973
-	if ($p = strpos($c,":")){
3974
-		$cle = substr($c,0,$p);
3975
-		$c = substr($c,$p+1);
3973
+	if ($p = strpos($c, ":")) {
3974
+		$cle = substr($c, 0, $p);
3975
+		$c = substr($c, $p + 1);
3976 3976
 
3977
-		if ($cle == calculer_cle_action($form . $c)) {
3977
+		if ($cle == calculer_cle_action($form.$c)) {
3978 3978
 			$env = @unserialize($c);
3979 3979
 			return $env;
3980 3980
 		}
@@ -4080,24 +4080,24 @@  discard block
 block discarded – undo
4080 4080
 		$att = "";
4081 4081
 		// si $on passe la balise et optionnelement une ou ++classe
4082 4082
 		// a.active span.selected.active etc....
4083
-		if (is_string($on) and (strncmp($on, 'a', 1)==0 or strncmp($on, 'span', 4)==0 or strncmp($on, 'strong', 6)==0)){
4083
+		if (is_string($on) and (strncmp($on, 'a', 1) == 0 or strncmp($on, 'span', 4) == 0 or strncmp($on, 'strong', 6) == 0)) {
4084 4084
 			$on = explode(".", $on);
4085 4085
 			// on verifie que c'est exactement une des 3 balises a, span ou strong
4086
-			if (in_array(reset($on), array('a', 'span', 'strong'))){
4086
+			if (in_array(reset($on), array('a', 'span', 'strong'))) {
4087 4087
 				$bal = array_shift($on);
4088 4088
 				$class = implode(" ", $on);
4089
-				if ($bal=="a"){
4089
+				if ($bal == "a") {
4090 4090
 					$att = 'href="#" ';
4091 4091
 				}
4092 4092
 			}
4093 4093
 		}
4094
-		$att .= 'class="' . ($class ? attribut_html($class) . ' ' : '') . (defined('_LIEN_OU_EXPOSE_CLASS_ON') ? _LIEN_OU_EXPOSE_CLASS_ON : 'on') . '"';
4094
+		$att .= 'class="'.($class ? attribut_html($class).' ' : '').(defined('_LIEN_OU_EXPOSE_CLASS_ON') ? _LIEN_OU_EXPOSE_CLASS_ON : 'on').'"';
4095 4095
 	} else {
4096 4096
 		$bal = 'a';
4097 4097
 		$att = "href='$url'"
4098
-			. ($title ? " title='" . attribut_html($title) . "'" : '')
4099
-			. ($class ? " class='" . attribut_html($class) . "'" : '')
4100
-			. ($rel ? " rel='" . attribut_html($rel) . "'" : '')
4098
+			. ($title ? " title='".attribut_html($title)."'" : '')
4099
+			. ($class ? " class='".attribut_html($class)."'" : '')
4100
+			. ($rel ? " rel='".attribut_html($rel)."'" : '')
4101 4101
 			. $evt;
4102 4102
 	}
4103 4103
 	if ($libelle === null) {
@@ -4232,7 +4232,7 @@  discard block
 block discarded – undo
4232 4232
 
4233 4233
 	// Icône
4234 4234
 	$icone = http_img_pack($fond, $alt, "width='$size' height='$size'");
4235
-	$icone = "<span class=\"icone-image".($fonction ? " icone-fonction icone-fonction-$fonction" : "") . "\">$icone</span>";
4235
+	$icone = "<span class=\"icone-image".($fonction ? " icone-fonction icone-fonction-$fonction" : "")."\">$icone</span>";
4236 4236
 
4237 4237
 	// Markup final
4238 4238
 	if ($type == 'lien') {
@@ -4507,20 +4507,20 @@  discard block
 block discarded – undo
4507 4507
 		$class_form = 'ajax';
4508 4508
 		$class = str_replace('ajax', '', $class);
4509 4509
 	}
4510
-	$class_btn = 'submit ' . trim($class);
4510
+	$class_btn = 'submit '.trim($class);
4511 4511
 
4512 4512
 	if ($confirm) {
4513
-		$confirm = "confirm(\"" . attribut_html($confirm) . "\")";
4513
+		$confirm = "confirm(\"".attribut_html($confirm)."\")";
4514 4514
 		if ($callback) {
4515 4515
 			$callback = "$confirm?($callback):false";
4516 4516
 		} else {
4517 4517
 			$callback = $confirm;
4518 4518
 		}
4519 4519
 	}
4520
-	$onclick = $callback ? " onclick='return " . addcslashes($callback, "'") . "'" : "";
4520
+	$onclick = $callback ? " onclick='return ".addcslashes($callback, "'")."'" : "";
4521 4521
 	$title = $title ? " title='$title'" : '';
4522 4522
 
4523
-	return "<form class='bouton_action_post $class_form' method='post' action='$url'><div>" . form_hidden($url)
4523
+	return "<form class='bouton_action_post $class_form' method='post' action='$url'><div>".form_hidden($url)
4524 4524
 	. "<button type='submit' class='$class_btn'$title$onclick>$libelle</button></div></form>";
4525 4525
 }
4526 4526
 
@@ -4584,14 +4584,14 @@  discard block
 block discarded – undo
4584 4584
 		$champ_titre = "";
4585 4585
 		if ($demande_titre) {
4586 4586
 			// si pas de titre declare mais champ titre, il sera peuple par le select *
4587
-			$champ_titre = (!empty($desc['titre'])) ? ', ' . $desc['titre'] : '';
4587
+			$champ_titre = (!empty($desc['titre'])) ? ', '.$desc['titre'] : '';
4588 4588
 		}
4589 4589
 		include_spip('base/abstract_sql');
4590 4590
 		include_spip('base/connect_sql');
4591 4591
 		$objets[$type_objet][$id_objet] = sql_fetsel(
4592
-			'*' . $champ_titre,
4592
+			'*'.$champ_titre,
4593 4593
 			$desc['table_sql'],
4594
-			id_table_objet($type_objet) . ' = ' . intval($id_objet)
4594
+			id_table_objet($type_objet).' = '.intval($id_objet)
4595 4595
 		);
4596 4596
 
4597 4597
 		// Toujours noter la longueur d'introduction, même si pas demandé cette fois-ci
@@ -4665,8 +4665,7 @@  discard block
 block discarded – undo
4665 4665
 	if (isset($ligne_sql['chapo'])) {
4666 4666
 		$chapo = $ligne_sql['chapo'];
4667 4667
 		$texte = strlen($descriptif) ?
4668
-			'' :
4669
-			"$chapo \n\n $texte";
4668
+			'' : "$chapo \n\n $texte";
4670 4669
 	}
4671 4670
 
4672 4671
 	// Longueur en paramètre, sinon celle renseignée dans la description de l'objet, sinon valeur en dur
@@ -4733,7 +4732,7 @@  discard block
 block discarded – undo
4733 4732
 		return $texte;
4734 4733
 	}
4735 4734
 
4736
-	$traitement = str_replace('%s', "'" . texte_script($texte) . "'", $traitement);
4735
+	$traitement = str_replace('%s', "'".texte_script($texte)."'", $traitement);
4737 4736
 
4738 4737
 	// Fournir $connect et $Pile[0] au traitement si besoin
4739 4738
 	$Pile = array(0 => $env);
@@ -4767,7 +4766,7 @@  discard block
 block discarded – undo
4767 4766
 	}
4768 4767
 	$url = generer_url_entite($id_objet, $objet, '', '', $connect);
4769 4768
 
4770
-	return "<a href='$url' class='$objet'>" . couper($titre, $longueur) . "</a>";
4769
+	return "<a href='$url' class='$objet'>".couper($titre, $longueur)."</a>";
4771 4770
 }
4772 4771
 
4773 4772
 
@@ -4786,10 +4785,10 @@  discard block
 block discarded – undo
4786 4785
 function wrap($texte, $wrap) {
4787 4786
 	$balises = extraire_balises($wrap);
4788 4787
 	if (preg_match_all(",<([a-z]\w*)\b[^>]*>,UimsS", $wrap, $regs, PREG_PATTERN_ORDER)) {
4789
-		$texte = $wrap . $texte;
4788
+		$texte = $wrap.$texte;
4790 4789
 		$regs = array_reverse($regs[1]);
4791
-		$wrap = "</" . implode("></", $regs) . ">";
4792
-		$texte = $texte . $wrap;
4790
+		$wrap = "</".implode("></", $regs).">";
4791
+		$texte = $texte.$wrap;
4793 4792
 	}
4794 4793
 
4795 4794
 	return $texte;
@@ -4820,7 +4819,7 @@  discard block
 block discarded – undo
4820 4819
 
4821 4820
 	// caster $u en array si besoin
4822 4821
 	if (is_object($u)) {
4823
-		$u = (array)$u;
4822
+		$u = (array) $u;
4824 4823
 	}
4825 4824
 
4826 4825
 	if (is_array($u)) {
@@ -4841,7 +4840,7 @@  discard block
 block discarded – undo
4841 4840
 		// sinon on passe a la ligne et on indente
4842 4841
 		$i_str = str_pad("", $indent, " ");
4843 4842
 		foreach ($u as $k => $v) {
4844
-			$out .= $join . $i_str . "$k: " . filtre_print_dist($v, $join, $indent + 2);
4843
+			$out .= $join.$i_str."$k: ".filtre_print_dist($v, $join, $indent + 2);
4845 4844
 		}
4846 4845
 
4847 4846
 		return $out;
@@ -4894,8 +4893,8 @@  discard block
 block discarded – undo
4894 4893
  * @param string $class
4895 4894
  * @return string
4896 4895
  */
4897
-function objet_icone($objet, $taille = 24, $class='') {
4898
-	$icone = objet_info($objet, 'icone_objet') . "-" . $taille . ".png";
4896
+function objet_icone($objet, $taille = 24, $class = '') {
4897
+	$icone = objet_info($objet, 'icone_objet')."-".$taille.".png";
4899 4898
 	$icone = chemin_image($icone);
4900 4899
 	$balise_img = charger_filtre('balise_img');
4901 4900
 
@@ -4919,12 +4918,12 @@  discard block
 block discarded – undo
4919 4918
  * @param array $options
4920 4919
  * @return string
4921 4920
  */
4922
-function objet_T($objet, $chaine, $args = array(), $options = array()){
4923
-	$chaine = explode(':',$chaine);
4924
-	if ($t = _T($objet . ':' . end($chaine), $args, array_merge($options, array('force'=>false)))) {
4921
+function objet_T($objet, $chaine, $args = array(), $options = array()) {
4922
+	$chaine = explode(':', $chaine);
4923
+	if ($t = _T($objet.':'.end($chaine), $args, array_merge($options, array('force'=>false)))) {
4925 4924
 		return $t;
4926 4925
 	}
4927
-	$chaine = implode(':',$chaine);
4926
+	$chaine = implode(':', $chaine);
4928 4927
 	return _T($chaine, $args, $options);
4929 4928
 }
4930 4929
 
@@ -4986,7 +4985,7 @@  discard block
 block discarded – undo
4986 4985
 	$cache = recuperer_fond($fond, $contexte, $options, $connect);
4987 4986
 
4988 4987
 	// calculer le nom de la css
4989
-	$dir_var = sous_repertoire(_DIR_VAR, 'cache-' . $extension);
4988
+	$dir_var = sous_repertoire(_DIR_VAR, 'cache-'.$extension);
4990 4989
 	$nom_safe = preg_replace(",\W,", '_', str_replace('.', '_', $fond));
4991 4990
 	$contexte_implicite = calculer_contexte_implicite();
4992 4991
 
@@ -4994,22 +4993,22 @@  discard block
 block discarded – undo
4994 4993
 	// mais on peut hasher selon le contenu a la demande, si plusieurs contextes produisent un meme contenu
4995 4994
 	// reduit la variabilite du nom et donc le nombre de css concatenees possibles in fine
4996 4995
 	if (isset($options['hash_on_content']) and $options['hash_on_content']) {
4997
-		$hash = md5($contexte_implicite['host'] . '::'. $cache);
4996
+		$hash = md5($contexte_implicite['host'].'::'.$cache);
4998 4997
 	}
4999 4998
 	else {
5000 4999
 		unset($contexte_implicite['notes']); // pas pertinent pour signaler un changeemnt de contenu pour des css/js
5001 5000
 		ksort($contexte);
5002
-		$hash = md5($fond . json_encode($contexte_implicite) . json_encode($contexte) . $connect);
5001
+		$hash = md5($fond.json_encode($contexte_implicite).json_encode($contexte).$connect);
5003 5002
 	}
5004
-	$filename = $dir_var . $extension . "dyn-$nom_safe-" . substr($hash, 0, 8) . ".$extension";
5003
+	$filename = $dir_var.$extension."dyn-$nom_safe-".substr($hash, 0, 8).".$extension";
5005 5004
 
5006 5005
 	// mettre a jour le fichier si il n'existe pas
5007 5006
 	// ou trop ancien
5008 5007
 	// le dernier fichier produit est toujours suffixe par .last
5009 5008
 	// et recopie sur le fichier cible uniquement si il change
5010 5009
 	if (!file_exists($filename)
5011
-		or !file_exists($filename . ".last")
5012
-		or (isset($cache['lastmodified']) and $cache['lastmodified'] and filemtime($filename . ".last") < $cache['lastmodified'])
5010
+		or !file_exists($filename.".last")
5011
+		or (isset($cache['lastmodified']) and $cache['lastmodified'] and filemtime($filename.".last") < $cache['lastmodified'])
5013 5012
 		or (defined('_VAR_MODE') and _VAR_MODE == 'recalcul')
5014 5013
 	) {
5015 5014
 		$contenu = $cache['texte'];
@@ -5028,10 +5027,10 @@  discard block
 block discarded – undo
5028 5027
 			}
5029 5028
 			// pas de date dans le commentaire car sinon ca invalide le md5 et force la maj
5030 5029
 			// mais on peut mettre un md5 du contenu, ce qui donne un aperu rapide si la feuille a change ou non
5031
-			$comment .= "}\n   md5:" . md5($contenu) . " */\n";
5030
+			$comment .= "}\n   md5:".md5($contenu)." */\n";
5032 5031
 		}
5033 5032
 		// et ecrire le fichier si il change
5034
-		ecrire_fichier_calcule_si_modifie($filename, $comment . $contenu, false, true);
5033
+		ecrire_fichier_calcule_si_modifie($filename, $comment.$contenu, false, true);
5035 5034
 	}
5036 5035
 
5037 5036
 	return timestamp($filename);
@@ -5226,11 +5225,11 @@  discard block
 block discarded – undo
5226 5225
 function spip_affiche_mot_de_passe_masque($passe, $afficher_partiellement = false, $portion_pourcent = null) {
5227 5226
 	$l = strlen($passe);
5228 5227
 
5229
-	if ($l<=8 or !$afficher_partiellement){
5228
+	if ($l <= 8 or !$afficher_partiellement) {
5230 5229
 		if (!$l) {
5231 5230
 			return ''; // montrer qu'il y a pas de mot de passe si il y en a pas
5232 5231
 		}
5233
-		return str_pad('',$afficher_partiellement ? $l : 16,'*');
5232
+		return str_pad('', $afficher_partiellement ? $l : 16, '*');
5234 5233
 	}
5235 5234
 
5236 5235
 	if (is_null($portion_pourcent)) {
@@ -5244,11 +5243,11 @@  discard block
 block discarded – undo
5244 5243
 	}
5245 5244
 	$e = intval(ceil($l * $portion_pourcent / 100 / 2));
5246 5245
 	$e = max($e, 0);
5247
-	$mid = str_pad('',$l-2*$e,'*');
5248
-	if ($e>0 and strlen($mid)>8){
5246
+	$mid = str_pad('', $l - 2 * $e, '*');
5247
+	if ($e > 0 and strlen($mid) > 8) {
5249 5248
 		$mid = '***...***';
5250 5249
 	}
5251
-	return substr($passe,0,$e) . $mid . ($e > 0 ? substr($passe,-$e) : '');
5250
+	return substr($passe, 0, $e).$mid.($e > 0 ? substr($passe, -$e) : '');
5252 5251
 }
5253 5252
 
5254 5253
 
@@ -5270,9 +5269,9 @@  discard block
 block discarded – undo
5270 5269
 function identifiant_slug($texte, $type = '', $options = array()) {
5271 5270
 
5272 5271
 	$original = $texte;
5273
-	$separateur = (isset($options['separateur'])?$options['separateur']:'_');
5274
-	$longueur_maxi = (isset($options['longueur_maxi'])?$options['longueur_maxi']:60);
5275
-	$longueur_mini = (isset($options['longueur_mini'])?$options['longueur_mini']:0);
5272
+	$separateur = (isset($options['separateur']) ? $options['separateur'] : '_');
5273
+	$longueur_maxi = (isset($options['longueur_maxi']) ? $options['longueur_maxi'] : 60);
5274
+	$longueur_mini = (isset($options['longueur_mini']) ? $options['longueur_mini'] : 0);
5276 5275
 
5277 5276
 	if (!function_exists('translitteration')) {
5278 5277
 		include_spip('inc/charsets');
@@ -5314,15 +5313,15 @@  discard block
 block discarded – undo
5314 5313
 			}
5315 5314
 	}
5316 5315
 
5317
-	if (strlen($texte)>$longueur_maxi) {
5316
+	if (strlen($texte) > $longueur_maxi) {
5318 5317
 		$texte = substr($texte, 0, $longueur_maxi);
5319 5318
 	}
5320 5319
 
5321 5320
 	if (strlen($texte) < $longueur_mini and $longueur_mini < $longueur_maxi) {
5322 5321
 		if (preg_match(',^\d,', $texte)) {
5323
-			$texte = ($type ? substr($type,0,1) : "s") . $texte;
5322
+			$texte = ($type ? substr($type, 0, 1) : "s").$texte;
5324 5323
 		}
5325
-		$texte .= $separateur . md5($original);
5324
+		$texte .= $separateur.md5($original);
5326 5325
 		$texte = substr($texte, 0, $longueur_mini);
5327 5326
 	}
5328 5327
 
Please login to merge, or discard this patch.