Completed
Push — master ( 72a024...b38d7e )
by cam
01:50
created
ecrire/inc/utils.php 2 patches
Indentation   +2257 added lines, -2258 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
  **/
18 18
 
19 19
 if (!defined('_ECRIRE_INC_VERSION')) {
20
-	return;
20
+    return;
21 21
 }
22 22
 
23 23
 
@@ -48,71 +48,71 @@  discard block
 block discarded – undo
48 48
  *     Nom de la fonction, ou false.
49 49
  */
50 50
 function charger_fonction($nom, $dossier = 'exec', $continue = false) {
51
-	static $echecs = [];
52
-
53
-	if (strlen($dossier) and substr($dossier, -1) != '/') {
54
-		$dossier .= '/';
55
-	}
56
-	$f = str_replace('/', '_', $dossier) . $nom;
57
-
58
-	if (function_exists($f)) {
59
-		return $f;
60
-	}
61
-	if (function_exists($g = $f . '_dist')) {
62
-		return $g;
63
-	}
64
-
65
-	if (isset($echecs[$f])) {
66
-		return $echecs[$f];
67
-	}
68
-	// Sinon charger le fichier de declaration si plausible
69
-
70
-	if (!preg_match(',^\w+$,', $f)) {
71
-		if ($continue) {
72
-			return false;
73
-		} //appel interne, on passe
74
-		include_spip('inc/minipres');
75
-		echo minipres();
76
-		exit;
77
-	}
78
-
79
-	// passer en minuscules (cf les balises de formulaires)
80
-	// et inclure le fichier
81
-	if (
82
-		!$inc = include_spip($dossier . ($d = strtolower($nom)))
83
-		// si le fichier truc/machin/nom.php n'existe pas,
84
-		// la fonction peut etre definie dans truc/machin.php qui regroupe plusieurs petites fonctions
85
-		and strlen(dirname($dossier)) and dirname($dossier) != '.'
86
-	) {
87
-		include_spip(substr($dossier, 0, -1));
88
-	}
89
-	if (function_exists($f)) {
90
-		return $f;
91
-	}
92
-	if (function_exists($g)) {
93
-		return $g;
94
-	}
95
-
96
-	if ($continue) {
97
-		return $echecs[$f] = false;
98
-	}
99
-
100
-	// Echec : message d'erreur
101
-	spip_log("fonction $nom ($f ou $g) indisponible" .
102
-		($inc ? '' : " (fichier $d absent de $dossier)"));
103
-
104
-	include_spip('inc/minipres');
105
-	echo minipres(
106
-		_T('forum_titre_erreur'),
107
-		$inc ?
108
-			_T('fonction_introuvable', ['fonction' => '<code>' . spip_htmlentities($f) . '</code>'])
109
-			. '<br />'
110
-			. _T('fonction_introuvable', ['fonction' => '<code>' . spip_htmlentities($g) . '</code>'])
111
-			:
112
-			_T('fichier_introuvable', ['fichier' => '<code>' . spip_htmlentities($d) . '</code>']),
113
-		['all_inline' => true,'status' => 404]
114
-	);
115
-	exit;
51
+    static $echecs = [];
52
+
53
+    if (strlen($dossier) and substr($dossier, -1) != '/') {
54
+        $dossier .= '/';
55
+    }
56
+    $f = str_replace('/', '_', $dossier) . $nom;
57
+
58
+    if (function_exists($f)) {
59
+        return $f;
60
+    }
61
+    if (function_exists($g = $f . '_dist')) {
62
+        return $g;
63
+    }
64
+
65
+    if (isset($echecs[$f])) {
66
+        return $echecs[$f];
67
+    }
68
+    // Sinon charger le fichier de declaration si plausible
69
+
70
+    if (!preg_match(',^\w+$,', $f)) {
71
+        if ($continue) {
72
+            return false;
73
+        } //appel interne, on passe
74
+        include_spip('inc/minipres');
75
+        echo minipres();
76
+        exit;
77
+    }
78
+
79
+    // passer en minuscules (cf les balises de formulaires)
80
+    // et inclure le fichier
81
+    if (
82
+        !$inc = include_spip($dossier . ($d = strtolower($nom)))
83
+        // si le fichier truc/machin/nom.php n'existe pas,
84
+        // la fonction peut etre definie dans truc/machin.php qui regroupe plusieurs petites fonctions
85
+        and strlen(dirname($dossier)) and dirname($dossier) != '.'
86
+    ) {
87
+        include_spip(substr($dossier, 0, -1));
88
+    }
89
+    if (function_exists($f)) {
90
+        return $f;
91
+    }
92
+    if (function_exists($g)) {
93
+        return $g;
94
+    }
95
+
96
+    if ($continue) {
97
+        return $echecs[$f] = false;
98
+    }
99
+
100
+    // Echec : message d'erreur
101
+    spip_log("fonction $nom ($f ou $g) indisponible" .
102
+        ($inc ? '' : " (fichier $d absent de $dossier)"));
103
+
104
+    include_spip('inc/minipres');
105
+    echo minipres(
106
+        _T('forum_titre_erreur'),
107
+        $inc ?
108
+            _T('fonction_introuvable', ['fonction' => '<code>' . spip_htmlentities($f) . '</code>'])
109
+            . '<br />'
110
+            . _T('fonction_introuvable', ['fonction' => '<code>' . spip_htmlentities($g) . '</code>'])
111
+            :
112
+            _T('fichier_introuvable', ['fichier' => '<code>' . spip_htmlentities($d) . '</code>']),
113
+        ['all_inline' => true,'status' => 404]
114
+    );
115
+    exit;
116 116
 }
117 117
 
118 118
 /**
@@ -122,17 +122,17 @@  discard block
 block discarded – undo
122 122
  * @return bool
123 123
  */
124 124
 function include_once_check($file) {
125
-	if (file_exists($file)) {
126
-		include_once $file;
125
+    if (file_exists($file)) {
126
+        include_once $file;
127 127
 
128
-		return true;
129
-	}
130
-	$crash = (isset($GLOBALS['meta']['message_crash_plugins']) ? unserialize($GLOBALS['meta']['message_crash_plugins']) : '');
131
-	$crash = ($crash ?: []);
132
-	$crash[$file] = true;
133
-	ecrire_meta('message_crash_plugins', serialize($crash));
128
+        return true;
129
+    }
130
+    $crash = (isset($GLOBALS['meta']['message_crash_plugins']) ? unserialize($GLOBALS['meta']['message_crash_plugins']) : '');
131
+    $crash = ($crash ?: []);
132
+    $crash[$file] = true;
133
+    ecrire_meta('message_crash_plugins', serialize($crash));
134 134
 
135
-	return false;
135
+    return false;
136 136
 }
137 137
 
138 138
 
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
  *     - string : chemin du fichier trouvé
157 157
  **/
158 158
 function include_spip($f, $include = true) {
159
-	return find_in_path($f . '.php', '', $include);
159
+    return find_in_path($f . '.php', '', $include);
160 160
 }
161 161
 
162 162
 /**
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
  *     - string : chemin du fichier trouvé
177 177
  **/
178 178
 function require_spip($f) {
179
-	return find_in_path($f . '.php', '', 'required');
179
+    return find_in_path($f . '.php', '', 'required');
180 180
 }
181 181
 
182 182
 
@@ -185,27 +185,27 @@  discard block
 block discarded – undo
185 185
  * quand on a besoin dans le PHP de filtres/fonctions qui y sont definis
186 186
  */
187 187
 function include_fichiers_fonctions() {
188
-	static $done = false;
189
-	if (!$done) {
190
-		include_spip('inc/lang');
191
-
192
-		// NB: mes_fonctions peut initialiser $dossier_squelettes (old-style)
193
-		// donc il faut l'inclure "en globals"
194
-		if ($f = find_in_path('mes_fonctions.php')) {
195
-			global $dossier_squelettes;
196
-			include_once(_ROOT_CWD . $f);
197
-		}
198
-
199
-		if (@is_readable(_CACHE_PLUGINS_FCT)) {
200
-			// chargement optimise precompile
201
-			include_once(_CACHE_PLUGINS_FCT);
202
-		}
203
-		if (test_espace_prive()) {
204
-			include_spip('inc/filtres_ecrire');
205
-		}
206
-		include_spip('public/fonctions'); // charger les fichiers fonctions associes aux criteres, balises..
207
-		$done = true;
208
-	}
188
+    static $done = false;
189
+    if (!$done) {
190
+        include_spip('inc/lang');
191
+
192
+        // NB: mes_fonctions peut initialiser $dossier_squelettes (old-style)
193
+        // donc il faut l'inclure "en globals"
194
+        if ($f = find_in_path('mes_fonctions.php')) {
195
+            global $dossier_squelettes;
196
+            include_once(_ROOT_CWD . $f);
197
+        }
198
+
199
+        if (@is_readable(_CACHE_PLUGINS_FCT)) {
200
+            // chargement optimise precompile
201
+            include_once(_CACHE_PLUGINS_FCT);
202
+        }
203
+        if (test_espace_prive()) {
204
+            include_spip('inc/filtres_ecrire');
205
+        }
206
+        include_spip('public/fonctions'); // charger les fichiers fonctions associes aux criteres, balises..
207
+        $done = true;
208
+    }
209 209
 }
210 210
 
211 211
 /**
@@ -231,23 +231,23 @@  discard block
 block discarded – undo
231 231
  *     Les paramètres du pipeline modifiés
232 232
  **/
233 233
 function minipipe($fonc, &$val) {
234
-	// fonction
235
-	if (function_exists($fonc)) {
236
-		$val = $fonc($val);
237
-	} // Class::Methode
238
-	else {
239
-		if (
240
-			preg_match('/^(\w*)::(\w*)$/S', $fonc, $regs)
241
-			and $methode = [$regs[1], $regs[2]]
242
-			and is_callable($methode)
243
-		) {
244
-			$val = $methode($val);
245
-		} else {
246
-			spip_log("Erreur - '$fonc' non definie !");
247
-		}
248
-	}
249
-
250
-	return $val;
234
+    // fonction
235
+    if (function_exists($fonc)) {
236
+        $val = $fonc($val);
237
+    } // Class::Methode
238
+    else {
239
+        if (
240
+            preg_match('/^(\w*)::(\w*)$/S', $fonc, $regs)
241
+            and $methode = [$regs[1], $regs[2]]
242
+            and is_callable($methode)
243
+        ) {
244
+            $val = $methode($val);
245
+        } else {
246
+            spip_log("Erreur - '$fonc' non definie !");
247
+        }
248
+    }
249
+
250
+    return $val;
251 251
 }
252 252
 
253 253
 /**
@@ -278,46 +278,46 @@  discard block
 block discarded – undo
278 278
  *     Résultat
279 279
  */
280 280
 function pipeline($action, $val = null) {
281
-	static $charger;
282
-
283
-	// chargement initial des fonctions mises en cache, ou generation du cache
284
-	if (!$charger) {
285
-		if (!($ok = @is_readable($charger = _CACHE_PIPELINES))) {
286
-			include_spip('inc/plugin');
287
-			// generer les fichiers php precompiles
288
-			// de chargement des plugins et des pipelines
289
-			actualise_plugins_actifs();
290
-			if (!($ok = @is_readable($charger))) {
291
-				spip_log("fichier $charger pas cree");
292
-			}
293
-		}
294
-
295
-		if ($ok) {
296
-			include_once $charger;
297
-		}
298
-	}
299
-
300
-	// appliquer notre fonction si elle existe
301
-	$fonc = 'execute_pipeline_' . strtolower($action);
302
-	if (function_exists($fonc)) {
303
-		$val = $fonc($val);
304
-	} // plantage ?
305
-	else {
306
-		spip_log("fonction $fonc absente : pipeline desactive", _LOG_ERREUR);
307
-	}
308
-
309
-	// si le flux est une table avec 2 cle args&data
310
-	// on ne ressort du pipe que les donnees dans 'data'
311
-	// array_key_exists pour php 4.1.0
312
-	if (
313
-		is_array($val)
314
-		and count($val) == 2
315
-		and (array_key_exists('data', $val))
316
-	) {
317
-		$val = $val['data'];
318
-	}
319
-
320
-	return $val;
281
+    static $charger;
282
+
283
+    // chargement initial des fonctions mises en cache, ou generation du cache
284
+    if (!$charger) {
285
+        if (!($ok = @is_readable($charger = _CACHE_PIPELINES))) {
286
+            include_spip('inc/plugin');
287
+            // generer les fichiers php precompiles
288
+            // de chargement des plugins et des pipelines
289
+            actualise_plugins_actifs();
290
+            if (!($ok = @is_readable($charger))) {
291
+                spip_log("fichier $charger pas cree");
292
+            }
293
+        }
294
+
295
+        if ($ok) {
296
+            include_once $charger;
297
+        }
298
+    }
299
+
300
+    // appliquer notre fonction si elle existe
301
+    $fonc = 'execute_pipeline_' . strtolower($action);
302
+    if (function_exists($fonc)) {
303
+        $val = $fonc($val);
304
+    } // plantage ?
305
+    else {
306
+        spip_log("fonction $fonc absente : pipeline desactive", _LOG_ERREUR);
307
+    }
308
+
309
+    // si le flux est une table avec 2 cle args&data
310
+    // on ne ressort du pipe que les donnees dans 'data'
311
+    // array_key_exists pour php 4.1.0
312
+    if (
313
+        is_array($val)
314
+        and count($val) == 2
315
+        and (array_key_exists('data', $val))
316
+    ) {
317
+        $val = $val['data'];
318
+    }
319
+
320
+    return $val;
321 321
 }
322 322
 
323 323
 /**
@@ -361,38 +361,38 @@  discard block
 block discarded – undo
361 361
  *     paramètre est planté pour cause de compatibilité ascendante.
362 362
  */
363 363
 function spip_log($message = null, $name = null) {
364
-	static $pre = [];
365
-	static $log;
366
-	preg_match('/^([a-z_]*)\.?(\d)?$/iS', (string)$name, $regs);
367
-	if (!isset($regs[1]) or !$logname = $regs[1]) {
368
-		$logname = null;
369
-	}
370
-	if (!isset($regs[2])) {
371
-		$niveau = _LOG_INFO;
372
-	}
373
-	else {
374
-		$niveau = intval($regs[2]);
375
-	}
376
-
377
-	if ($niveau <= (defined('_LOG_FILTRE_GRAVITE') ? _LOG_FILTRE_GRAVITE : _LOG_INFO_IMPORTANTE)) {
378
-		if (!$pre) {
379
-			$pre = [
380
-				_LOG_HS => 'HS:',
381
-				_LOG_ALERTE_ROUGE => 'ALERTE:',
382
-				_LOG_CRITIQUE => 'CRITIQUE:',
383
-				_LOG_ERREUR => 'ERREUR:',
384
-				_LOG_AVERTISSEMENT => 'WARNING:',
385
-				_LOG_INFO_IMPORTANTE => '!INFO:',
386
-				_LOG_INFO => 'info:',
387
-				_LOG_DEBUG => 'debug:'
388
-			];
389
-			$log = charger_fonction('log', 'inc');
390
-		}
391
-		if (!is_string($message)) {
392
-			$message = print_r($message, true);
393
-		}
394
-		$log($pre[$niveau] . ' ' . $message, $logname);
395
-	}
364
+    static $pre = [];
365
+    static $log;
366
+    preg_match('/^([a-z_]*)\.?(\d)?$/iS', (string)$name, $regs);
367
+    if (!isset($regs[1]) or !$logname = $regs[1]) {
368
+        $logname = null;
369
+    }
370
+    if (!isset($regs[2])) {
371
+        $niveau = _LOG_INFO;
372
+    }
373
+    else {
374
+        $niveau = intval($regs[2]);
375
+    }
376
+
377
+    if ($niveau <= (defined('_LOG_FILTRE_GRAVITE') ? _LOG_FILTRE_GRAVITE : _LOG_INFO_IMPORTANTE)) {
378
+        if (!$pre) {
379
+            $pre = [
380
+                _LOG_HS => 'HS:',
381
+                _LOG_ALERTE_ROUGE => 'ALERTE:',
382
+                _LOG_CRITIQUE => 'CRITIQUE:',
383
+                _LOG_ERREUR => 'ERREUR:',
384
+                _LOG_AVERTISSEMENT => 'WARNING:',
385
+                _LOG_INFO_IMPORTANTE => '!INFO:',
386
+                _LOG_INFO => 'info:',
387
+                _LOG_DEBUG => 'debug:'
388
+            ];
389
+            $log = charger_fonction('log', 'inc');
390
+        }
391
+        if (!is_string($message)) {
392
+            $message = print_r($message, true);
393
+        }
394
+        $log($pre[$niveau] . ' ' . $message, $logname);
395
+    }
396 396
 }
397 397
 
398 398
 /**
@@ -403,8 +403,8 @@  discard block
 block discarded – undo
403 403
  * @param array $opt Tableau d'options
404 404
  **/
405 405
 function journal($phrase, $opt = []) {
406
-	$journal = charger_fonction('journal', 'inc');
407
-	$journal($phrase, $opt);
406
+    $journal = charger_fonction('journal', 'inc');
407
+    $journal($phrase, $opt);
408 408
 }
409 409
 
410 410
 
@@ -423,37 +423,37 @@  discard block
 block discarded – undo
423 423
  **/
424 424
 function _request($var, $c = false) {
425 425
 
426
-	if (is_array($c)) {
427
-		return $c[$var] ?? null;
428
-	}
429
-
430
-	if (isset($_GET[$var])) {
431
-		$a = $_GET[$var];
432
-	} elseif (isset($_POST[$var])) {
433
-		$a = $_POST[$var];
434
-	} else {
435
-		return null;
436
-	}
437
-
438
-	// Si on est en ajax et en POST tout a ete encode
439
-	// via encodeURIComponent, il faut donc repasser
440
-	// dans le charset local...
441
-	if (
442
-		defined('_AJAX')
443
-		and _AJAX
444
-		and isset($GLOBALS['meta']['charset'])
445
-		and $GLOBALS['meta']['charset'] != 'utf-8'
446
-		and is_string($a)
447
-		// check rapide mais pas fiable
448
-		and preg_match(',[\x80-\xFF],', $a)
449
-		// check fiable
450
-		and include_spip('inc/charsets')
451
-		and is_utf8($a)
452
-	) {
453
-		return importer_charset($a, 'utf-8');
454
-	}
455
-
456
-	return $a;
426
+    if (is_array($c)) {
427
+        return $c[$var] ?? null;
428
+    }
429
+
430
+    if (isset($_GET[$var])) {
431
+        $a = $_GET[$var];
432
+    } elseif (isset($_POST[$var])) {
433
+        $a = $_POST[$var];
434
+    } else {
435
+        return null;
436
+    }
437
+
438
+    // Si on est en ajax et en POST tout a ete encode
439
+    // via encodeURIComponent, il faut donc repasser
440
+    // dans le charset local...
441
+    if (
442
+        defined('_AJAX')
443
+        and _AJAX
444
+        and isset($GLOBALS['meta']['charset'])
445
+        and $GLOBALS['meta']['charset'] != 'utf-8'
446
+        and is_string($a)
447
+        // check rapide mais pas fiable
448
+        and preg_match(',[\x80-\xFF],', $a)
449
+        // check fiable
450
+        and include_spip('inc/charsets')
451
+        and is_utf8($a)
452
+    ) {
453
+        return importer_charset($a, 'utf-8');
454
+    }
455
+
456
+    return $a;
457 457
 }
458 458
 
459 459
 
@@ -471,22 +471,22 @@  discard block
 block discarded – undo
471 471
  *     - false sinon
472 472
  **/
473 473
 function set_request($var, $val = null, $c = false) {
474
-	if (is_array($c)) {
475
-		unset($c[$var]);
476
-		if ($val !== null) {
477
-			$c[$var] = $val;
478
-		}
474
+    if (is_array($c)) {
475
+        unset($c[$var]);
476
+        if ($val !== null) {
477
+            $c[$var] = $val;
478
+        }
479 479
 
480
-		return $c;
481
-	}
480
+        return $c;
481
+    }
482 482
 
483
-	unset($_GET[$var]);
484
-	unset($_POST[$var]);
485
-	if ($val !== null) {
486
-		$_GET[$var] = $val;
487
-	}
483
+    unset($_GET[$var]);
484
+    unset($_POST[$var]);
485
+    if ($val !== null) {
486
+        $_GET[$var] = $val;
487
+    }
488 488
 
489
-	return false; # n'affecte pas $c
489
+    return false; # n'affecte pas $c
490 490
 }
491 491
 
492 492
 /**
@@ -506,25 +506,25 @@  discard block
 block discarded – undo
506 506
  * @return array|mixed|string
507 507
  */
508 508
 function spip_sanitize_from_request($value, $key, $sanitize_function = 'entites_html') {
509
-	if (is_array($value)) {
510
-		if ($key == '*') {
511
-			$key = array_keys($value);
512
-		}
513
-		if (!is_array($key)) {
514
-			$key = [$key];
515
-		}
516
-		foreach ($key as $k) {
517
-			if (!empty($value[$k])) {
518
-				$value[$k] = spip_sanitize_from_request($value[$k], $k, $sanitize_function);
519
-			}
520
-		}
521
-		return $value;
522
-	}
523
-	// si la valeur vient des GET ou POST on la sanitize
524
-	if (!empty($value) and $value == _request($key)) {
525
-		$value = $sanitize_function($value);
526
-	}
527
-	return $value;
509
+    if (is_array($value)) {
510
+        if ($key == '*') {
511
+            $key = array_keys($value);
512
+        }
513
+        if (!is_array($key)) {
514
+            $key = [$key];
515
+        }
516
+        foreach ($key as $k) {
517
+            if (!empty($value[$k])) {
518
+                $value[$k] = spip_sanitize_from_request($value[$k], $k, $sanitize_function);
519
+            }
520
+        }
521
+        return $value;
522
+    }
523
+    // si la valeur vient des GET ou POST on la sanitize
524
+    if (!empty($value) and $value == _request($key)) {
525
+        $value = $sanitize_function($value);
526
+    }
527
+    return $value;
528 528
 }
529 529
 
530 530
 /**
@@ -532,23 +532,22 @@  discard block
 block discarded – undo
532 532
  *
533 533
  * On est sur le web, on exclut certains protocoles,
534 534
  * notamment 'file://', 'php://' et d'autres…
535
-
536 535
  * @param string $url
537 536
  * @return bool
538 537
  */
539 538
 function tester_url_absolue($url) {
540
-	$url = trim($url ?? '');
541
-	if ($url && preg_match(';^([a-z]{3,7}:)?//;Uims', $url, $m)) {
542
-		if (
543
-			isset($m[1])
544
-			and $p = strtolower(rtrim($m[1], ':'))
545
-			and in_array($p, ['file', 'php', 'zlib', 'glob', 'phar', 'ssh2', 'rar', 'ogg', 'expect', 'zip'])
546
-		) {
547
-			return false;
548
-		}
549
-		return true;
550
-	}
551
-	return false;
539
+    $url = trim($url ?? '');
540
+    if ($url && preg_match(';^([a-z]{3,7}:)?//;Uims', $url, $m)) {
541
+        if (
542
+            isset($m[1])
543
+            and $p = strtolower(rtrim($m[1], ':'))
544
+            and in_array($p, ['file', 'php', 'zlib', 'glob', 'phar', 'ssh2', 'rar', 'ogg', 'expect', 'zip'])
545
+        ) {
546
+            return false;
547
+        }
548
+        return true;
549
+    }
550
+    return false;
552 551
 }
553 552
 
554 553
 /**
@@ -570,95 +569,95 @@  discard block
 block discarded – undo
570 569
  * @return string URL
571 570
  */
572 571
 function parametre_url($url, $c, $v = null, $sep = '&amp;') {
573
-	// requete erronnee : plusieurs variable dans $c et aucun $v
574
-	if (strpos($c, '|') !== false and is_null($v)) {
575
-		return null;
576
-	}
577
-
578
-	// lever l'#ancre
579
-	if (preg_match(',^([^#]*)(#.*)$,', $url, $r)) {
580
-		$url = $r[1];
581
-		$ancre = $r[2];
582
-	} else {
583
-		$ancre = '';
584
-	}
585
-
586
-	// eclater
587
-	$url = preg_split(',[?]|&amp;|&,', $url);
588
-
589
-	// recuperer la base
590
-	$a = array_shift($url);
591
-	if (!$a) {
592
-		$a = './';
593
-	}
594
-
595
-	$regexp = ',^(' . str_replace('[]', '\[\]', $c) . '[[]?[]]?)(=.*)?$,';
596
-	$ajouts = array_flip(explode('|', $c));
597
-	$u = is_array($v) ? $v : rawurlencode((string) $v);
598
-	$testv = (is_array($v) ? count($v) : strlen((string) $v));
599
-	$v_read = null;
600
-	// lire les variables et agir
601
-	foreach ($url as $n => $val) {
602
-		if (preg_match($regexp, urldecode($val), $r)) {
603
-			$r = array_pad($r, 3, null);
604
-			if ($v === null) {
605
-				// c'est un tableau, on memorise les valeurs
606
-				if (substr($r[1], -2) == '[]') {
607
-					if (!$v_read) {
608
-						$v_read = [];
609
-					}
610
-					$v_read[] = $r[2] ? substr($r[2], 1) : '';
611
-				} // c'est un scalaire, on retourne direct
612
-				else {
613
-					return $r[2] ? substr($r[2], 1) : '';
614
-				}
615
-			} // suppression
616
-			elseif (!$testv) {
617
-				unset($url[$n]);
618
-			}
619
-			// Ajout. Pour une variable, remplacer au meme endroit,
620
-			// pour un tableau ce sera fait dans la prochaine boucle
621
-			elseif (substr($r[1], -2) != '[]') {
622
-				$url[$n] = $r[1] . '=' . $u;
623
-				unset($ajouts[$r[1]]);
624
-			}
625
-			// Pour les tableaux on laisse tomber les valeurs de
626
-			// départ, on remplira à l'étape suivante
627
-			else {
628
-				unset($url[$n]);
629
-			}
630
-		}
631
-	}
632
-
633
-	// traiter les parametres pas encore trouves
634
-	if (
635
-		$v === null
636
-		and $args = func_get_args()
637
-		and count($args) == 2
638
-	) {
639
-		return $v_read; // rien trouve ou un tableau
640
-	} elseif ($testv) {
641
-		foreach ($ajouts as $k => $n) {
642
-			if (!is_array($v)) {
643
-				$url[] = $k . '=' . $u;
644
-			} else {
645
-				$id = (substr($k, -2) == '[]') ? $k : ($k . '[]');
646
-				foreach ($v as $w) {
647
-					$url[] = $id . '=' . (is_array($w) ? 'Array' : rawurlencode($w));
648
-				}
649
-			}
650
-		}
651
-	}
652
-
653
-	// eliminer les vides
654
-	$url = array_filter($url);
655
-
656
-	// recomposer l'adresse
657
-	if ($url) {
658
-		$a .= '?' . join($sep, $url);
659
-	}
660
-
661
-	return $a . $ancre;
572
+    // requete erronnee : plusieurs variable dans $c et aucun $v
573
+    if (strpos($c, '|') !== false and is_null($v)) {
574
+        return null;
575
+    }
576
+
577
+    // lever l'#ancre
578
+    if (preg_match(',^([^#]*)(#.*)$,', $url, $r)) {
579
+        $url = $r[1];
580
+        $ancre = $r[2];
581
+    } else {
582
+        $ancre = '';
583
+    }
584
+
585
+    // eclater
586
+    $url = preg_split(',[?]|&amp;|&,', $url);
587
+
588
+    // recuperer la base
589
+    $a = array_shift($url);
590
+    if (!$a) {
591
+        $a = './';
592
+    }
593
+
594
+    $regexp = ',^(' . str_replace('[]', '\[\]', $c) . '[[]?[]]?)(=.*)?$,';
595
+    $ajouts = array_flip(explode('|', $c));
596
+    $u = is_array($v) ? $v : rawurlencode((string) $v);
597
+    $testv = (is_array($v) ? count($v) : strlen((string) $v));
598
+    $v_read = null;
599
+    // lire les variables et agir
600
+    foreach ($url as $n => $val) {
601
+        if (preg_match($regexp, urldecode($val), $r)) {
602
+            $r = array_pad($r, 3, null);
603
+            if ($v === null) {
604
+                // c'est un tableau, on memorise les valeurs
605
+                if (substr($r[1], -2) == '[]') {
606
+                    if (!$v_read) {
607
+                        $v_read = [];
608
+                    }
609
+                    $v_read[] = $r[2] ? substr($r[2], 1) : '';
610
+                } // c'est un scalaire, on retourne direct
611
+                else {
612
+                    return $r[2] ? substr($r[2], 1) : '';
613
+                }
614
+            } // suppression
615
+            elseif (!$testv) {
616
+                unset($url[$n]);
617
+            }
618
+            // Ajout. Pour une variable, remplacer au meme endroit,
619
+            // pour un tableau ce sera fait dans la prochaine boucle
620
+            elseif (substr($r[1], -2) != '[]') {
621
+                $url[$n] = $r[1] . '=' . $u;
622
+                unset($ajouts[$r[1]]);
623
+            }
624
+            // Pour les tableaux on laisse tomber les valeurs de
625
+            // départ, on remplira à l'étape suivante
626
+            else {
627
+                unset($url[$n]);
628
+            }
629
+        }
630
+    }
631
+
632
+    // traiter les parametres pas encore trouves
633
+    if (
634
+        $v === null
635
+        and $args = func_get_args()
636
+        and count($args) == 2
637
+    ) {
638
+        return $v_read; // rien trouve ou un tableau
639
+    } elseif ($testv) {
640
+        foreach ($ajouts as $k => $n) {
641
+            if (!is_array($v)) {
642
+                $url[] = $k . '=' . $u;
643
+            } else {
644
+                $id = (substr($k, -2) == '[]') ? $k : ($k . '[]');
645
+                foreach ($v as $w) {
646
+                    $url[] = $id . '=' . (is_array($w) ? 'Array' : rawurlencode($w));
647
+                }
648
+            }
649
+        }
650
+    }
651
+
652
+    // eliminer les vides
653
+    $url = array_filter($url);
654
+
655
+    // recomposer l'adresse
656
+    if ($url) {
657
+        $a .= '?' . join($sep, $url);
658
+    }
659
+
660
+    return $a . $ancre;
662 661
 }
663 662
 
664 663
 /**
@@ -676,21 +675,21 @@  discard block
 block discarded – undo
676 675
  * @return string
677 676
  */
678 677
 function ancre_url($url, $ancre) {
679
-	// lever l'#ancre
680
-	if (preg_match(',^([^#]*)(#.*)$,', $url, $r)) {
681
-		$url = $r[1];
682
-	}
683
-	if (preg_match('/[^-_a-zA-Z0-9]+/S', $ancre)) {
684
-		if (!function_exists('translitteration')) {
685
-			include_spip('inc/charsets');
686
-		}
687
-		$ancre = preg_replace(
688
-			['/^[^-_a-zA-Z0-9]+/', '/[^-_a-zA-Z0-9]/'],
689
-			['', '-'],
690
-			translitteration($ancre)
691
-		);
692
-	}
693
-	return $url . (strlen($ancre) ? '#' . $ancre : '');
678
+    // lever l'#ancre
679
+    if (preg_match(',^([^#]*)(#.*)$,', $url, $r)) {
680
+        $url = $r[1];
681
+    }
682
+    if (preg_match('/[^-_a-zA-Z0-9]+/S', $ancre)) {
683
+        if (!function_exists('translitteration')) {
684
+            include_spip('inc/charsets');
685
+        }
686
+        $ancre = preg_replace(
687
+            ['/^[^-_a-zA-Z0-9]+/', '/[^-_a-zA-Z0-9]/'],
688
+            ['', '-'],
689
+            translitteration($ancre)
690
+        );
691
+    }
692
+    return $url . (strlen($ancre) ? '#' . $ancre : '');
694 693
 }
695 694
 
696 695
 /**
@@ -700,16 +699,16 @@  discard block
 block discarded – undo
700 699
  * @return string
701 700
  */
702 701
 function nettoyer_uri($reset = null) {
703
-	static $done = false;
704
-	static $propre = '';
705
-	if (!is_null($reset)) {
706
-		return $propre = $reset;
707
-	}
708
-	if ($done) {
709
-		return $propre;
710
-	}
711
-	$done = true;
712
-	return $propre = nettoyer_uri_var($GLOBALS['REQUEST_URI']);
702
+    static $done = false;
703
+    static $propre = '';
704
+    if (!is_null($reset)) {
705
+        return $propre = $reset;
706
+    }
707
+    if ($done) {
708
+        return $propre;
709
+    }
710
+    $done = true;
711
+    return $propre = nettoyer_uri_var($GLOBALS['REQUEST_URI']);
713 712
 }
714 713
 
715 714
 /**
@@ -721,16 +720,16 @@  discard block
 block discarded – undo
721 720
  * @return string
722 721
  */
723 722
 function nettoyer_uri_var($request_uri) {
724
-	$uri1 = $request_uri;
725
-	do {
726
-		$uri = $uri1;
727
-		$uri1 = preg_replace(
728
-			',([?&])(var_[^=&]*|PHPSESSID|fbclid|utm_[^=&]*)=[^&]*(&|$),i',
729
-			'\1',
730
-			$uri
731
-		);
732
-	} while ($uri <> $uri1);
733
-	return preg_replace(',[?&]$,', '', $uri1);
723
+    $uri1 = $request_uri;
724
+    do {
725
+        $uri = $uri1;
726
+        $uri1 = preg_replace(
727
+            ',([?&])(var_[^=&]*|PHPSESSID|fbclid|utm_[^=&]*)=[^&]*(&|$),i',
728
+            '\1',
729
+            $uri
730
+        );
731
+    } while ($uri <> $uri1);
732
+    return preg_replace(',[?&]$,', '', $uri1);
734 733
 }
735 734
 
736 735
 
@@ -744,48 +743,48 @@  discard block
 block discarded – undo
744 743
  *    URL vers soi-même
745 744
  **/
746 745
 function self($amp = '&amp;', $root = false) {
747
-	$url = nettoyer_uri();
748
-	if (
749
-		!$root
750
-		and (
751
-			// si pas de profondeur on peut tronquer
752
-			$GLOBALS['profondeur_url'] < (_DIR_RESTREINT ? 1 : 2)
753
-			// sinon c'est OK si _SET_HTML_BASE a ete force a false
754
-			or (defined('_SET_HTML_BASE') and !_SET_HTML_BASE))
755
-	) {
756
-		$url = preg_replace(',^[^?]*/,', '', $url);
757
-	}
758
-	// ajouter le cas echeant les variables _POST['id_...']
759
-	foreach ($_POST as $v => $c) {
760
-		if (substr($v, 0, 3) == 'id_') {
761
-			$url = parametre_url($url, $v, $c, '&');
762
-		}
763
-	}
764
-
765
-	// supprimer les variables sans interet
766
-	if (test_espace_prive()) {
767
-		$url = preg_replace(',([?&])('
768
-			. 'lang|show_docs|'
769
-			. 'changer_lang|var_lang|action)=[^&]*,i', '\1', $url);
770
-		$url = preg_replace(',([?&])[&]+,', '\1', $url);
771
-		$url = preg_replace(',[&]$,', '\1', $url);
772
-	}
773
-
774
-	// eviter les hacks
775
-	include_spip('inc/filtres_mini');
776
-	$url = spip_htmlspecialchars($url);
777
-
778
-	$url = str_replace(["'", '"', '<', '[', ']', ':'], ['%27', '%22', '%3C', '%5B', '%5D', '%3A'], $url);
779
-
780
-	// &amp; ?
781
-	if ($amp != '&amp;') {
782
-		$url = str_replace('&amp;', $amp, $url);
783
-	}
784
-
785
-	// Si ca demarre par ? ou vide, donner './'
786
-	$url = preg_replace(',^([?].*)?$,', './\1', $url);
787
-
788
-	return $url;
746
+    $url = nettoyer_uri();
747
+    if (
748
+        !$root
749
+        and (
750
+            // si pas de profondeur on peut tronquer
751
+            $GLOBALS['profondeur_url'] < (_DIR_RESTREINT ? 1 : 2)
752
+            // sinon c'est OK si _SET_HTML_BASE a ete force a false
753
+            or (defined('_SET_HTML_BASE') and !_SET_HTML_BASE))
754
+    ) {
755
+        $url = preg_replace(',^[^?]*/,', '', $url);
756
+    }
757
+    // ajouter le cas echeant les variables _POST['id_...']
758
+    foreach ($_POST as $v => $c) {
759
+        if (substr($v, 0, 3) == 'id_') {
760
+            $url = parametre_url($url, $v, $c, '&');
761
+        }
762
+    }
763
+
764
+    // supprimer les variables sans interet
765
+    if (test_espace_prive()) {
766
+        $url = preg_replace(',([?&])('
767
+            . 'lang|show_docs|'
768
+            . 'changer_lang|var_lang|action)=[^&]*,i', '\1', $url);
769
+        $url = preg_replace(',([?&])[&]+,', '\1', $url);
770
+        $url = preg_replace(',[&]$,', '\1', $url);
771
+    }
772
+
773
+    // eviter les hacks
774
+    include_spip('inc/filtres_mini');
775
+    $url = spip_htmlspecialchars($url);
776
+
777
+    $url = str_replace(["'", '"', '<', '[', ']', ':'], ['%27', '%22', '%3C', '%5B', '%5D', '%3A'], $url);
778
+
779
+    // &amp; ?
780
+    if ($amp != '&amp;') {
781
+        $url = str_replace('&amp;', $amp, $url);
782
+    }
783
+
784
+    // Si ca demarre par ? ou vide, donner './'
785
+    $url = preg_replace(',^([?].*)?$,', './\1', $url);
786
+
787
+    return $url;
789 788
 }
790 789
 
791 790
 
@@ -796,7 +795,7 @@  discard block
 block discarded – undo
796 795
  *     true si c'est le cas, false sinon.
797 796
  */
798 797
 function test_espace_prive() {
799
-	return defined('_ESPACE_PRIVE') ? _ESPACE_PRIVE : false;
798
+    return defined('_ESPACE_PRIVE') ? _ESPACE_PRIVE : false;
800 799
 }
801 800
 
802 801
 /**
@@ -806,7 +805,7 @@  discard block
 block discarded – undo
806 805
  * @return bool
807 806
  */
808 807
 function test_plugin_actif($plugin) {
809
-	return ($plugin and defined('_DIR_PLUGIN_' . strtoupper($plugin))) ? true : false;
808
+    return ($plugin and defined('_DIR_PLUGIN_' . strtoupper($plugin))) ? true : false;
810 809
 }
811 810
 
812 811
 /**
@@ -837,52 +836,52 @@  discard block
 block discarded – undo
837 836
  *     Texte
838 837
  */
839 838
 function _T($texte, $args = [], $options = []) {
840
-	static $traduire = false;
841
-	$o = ['class' => '', 'force' => true, 'sanitize' => true];
842
-	if ($options) {
843
-		// support de l'ancien argument $class
844
-		if (is_string($options)) {
845
-			$options = ['class' => $options];
846
-		}
847
-		$o = array_merge($o, $options);
848
-	}
849
-
850
-	if (!$traduire) {
851
-		$traduire = charger_fonction('traduire', 'inc');
852
-		include_spip('inc/lang');
853
-	}
854
-
855
-	// On peut passer explicitement la langue dans le tableau
856
-	// On utilise le même nom de variable que la globale
857
-	if (isset($args['spip_lang'])) {
858
-		$lang = $args['spip_lang'];
859
-		// On l'enleve pour ne pas le passer au remplacement
860
-		unset($args['spip_lang']);
861
-	} // Sinon on prend la langue du contexte
862
-	else {
863
-		$lang = $GLOBALS['spip_lang'];
864
-	}
865
-	$text = $traduire($texte, $lang);
866
-
867
-	if ($text === null || !strlen($text)) {
868
-		if (!$o['force']) {
869
-			return '';
870
-		}
871
-
872
-		$text = $texte;
873
-
874
-		// pour les chaines non traduites, assurer un service minimum
875
-		if (!$GLOBALS['test_i18n'] and (_request('var_mode') != 'traduction')) {
876
-			$n = strpos($text, ':');
877
-			if ($n !== false) {
878
-				$text = substr($text, $n + 1);
879
-			}
880
-			$text = str_replace('_', ' ', $text);
881
-		}
882
-		$o['class'] = null;
883
-	}
884
-
885
-	return _L($text, $args, $o);
839
+    static $traduire = false;
840
+    $o = ['class' => '', 'force' => true, 'sanitize' => true];
841
+    if ($options) {
842
+        // support de l'ancien argument $class
843
+        if (is_string($options)) {
844
+            $options = ['class' => $options];
845
+        }
846
+        $o = array_merge($o, $options);
847
+    }
848
+
849
+    if (!$traduire) {
850
+        $traduire = charger_fonction('traduire', 'inc');
851
+        include_spip('inc/lang');
852
+    }
853
+
854
+    // On peut passer explicitement la langue dans le tableau
855
+    // On utilise le même nom de variable que la globale
856
+    if (isset($args['spip_lang'])) {
857
+        $lang = $args['spip_lang'];
858
+        // On l'enleve pour ne pas le passer au remplacement
859
+        unset($args['spip_lang']);
860
+    } // Sinon on prend la langue du contexte
861
+    else {
862
+        $lang = $GLOBALS['spip_lang'];
863
+    }
864
+    $text = $traduire($texte, $lang);
865
+
866
+    if ($text === null || !strlen($text)) {
867
+        if (!$o['force']) {
868
+            return '';
869
+        }
870
+
871
+        $text = $texte;
872
+
873
+        // pour les chaines non traduites, assurer un service minimum
874
+        if (!$GLOBALS['test_i18n'] and (_request('var_mode') != 'traduction')) {
875
+            $n = strpos($text, ':');
876
+            if ($n !== false) {
877
+                $text = substr($text, $n + 1);
878
+            }
879
+            $text = str_replace('_', ' ', $text);
880
+        }
881
+        $o['class'] = null;
882
+    }
883
+
884
+    return _L($text, $args, $o);
886 885
 }
887 886
 
888 887
 
@@ -909,53 +908,53 @@  discard block
 block discarded – undo
909 908
  *     Texte
910 909
  */
911 910
 function _L($text, $args = [], $options = []) {
912
-	$f = $text;
913
-	$defaut_options = [
914
-		'class' => null,
915
-		'sanitize' => true,
916
-	];
917
-	// support de l'ancien argument $class
918
-	if ($options and is_string($options)) {
919
-		$options = ['class' => $options];
920
-	}
921
-	if (is_array($options)) {
922
-		$options += $defaut_options;
923
-	} else {
924
-		$options = $defaut_options;
925
-	}
926
-
927
-	if (is_array($args) and count($args)) {
928
-		if (!function_exists('interdire_scripts')) {
929
-			include_spip('inc/texte');
930
-		}
931
-		if (!function_exists('echapper_html_suspect')) {
932
-			include_spip('inc/texte_mini');
933
-		}
934
-		foreach ($args as $name => $value) {
935
-			if (strpos($text, (string) "@$name@") !== false) {
936
-				if ($options['sanitize']) {
937
-					$value = echapper_html_suspect($value);
938
-					$value = interdire_scripts($value, -1);
939
-				}
940
-				if (!empty($options['class'])) {
941
-					$value = "<span class='" . $options['class'] . "'>$value</span>";
942
-				}
943
-				$text = str_replace("@$name@", $value, $text);
944
-				unset($args[$name]);
945
-			}
946
-		}
947
-		// Si des variables n'ont pas ete inserees, le signaler
948
-		// (chaines de langues pas a jour)
949
-		if ($args) {
950
-			spip_log("$f:  variables inutilisees " . join(', ', array_keys($args)), _LOG_DEBUG);
951
-		}
952
-	}
953
-
954
-	if (($GLOBALS['test_i18n'] or (_request('var_mode') == 'traduction')) and is_null($options['class'])) {
955
-		return "<span class='debug-traduction-erreur'>$text</span>";
956
-	} else {
957
-		return $text;
958
-	}
911
+    $f = $text;
912
+    $defaut_options = [
913
+        'class' => null,
914
+        'sanitize' => true,
915
+    ];
916
+    // support de l'ancien argument $class
917
+    if ($options and is_string($options)) {
918
+        $options = ['class' => $options];
919
+    }
920
+    if (is_array($options)) {
921
+        $options += $defaut_options;
922
+    } else {
923
+        $options = $defaut_options;
924
+    }
925
+
926
+    if (is_array($args) and count($args)) {
927
+        if (!function_exists('interdire_scripts')) {
928
+            include_spip('inc/texte');
929
+        }
930
+        if (!function_exists('echapper_html_suspect')) {
931
+            include_spip('inc/texte_mini');
932
+        }
933
+        foreach ($args as $name => $value) {
934
+            if (strpos($text, (string) "@$name@") !== false) {
935
+                if ($options['sanitize']) {
936
+                    $value = echapper_html_suspect($value);
937
+                    $value = interdire_scripts($value, -1);
938
+                }
939
+                if (!empty($options['class'])) {
940
+                    $value = "<span class='" . $options['class'] . "'>$value</span>";
941
+                }
942
+                $text = str_replace("@$name@", $value, $text);
943
+                unset($args[$name]);
944
+            }
945
+        }
946
+        // Si des variables n'ont pas ete inserees, le signaler
947
+        // (chaines de langues pas a jour)
948
+        if ($args) {
949
+            spip_log("$f:  variables inutilisees " . join(', ', array_keys($args)), _LOG_DEBUG);
950
+        }
951
+    }
952
+
953
+    if (($GLOBALS['test_i18n'] or (_request('var_mode') == 'traduction')) and is_null($options['class'])) {
954
+        return "<span class='debug-traduction-erreur'>$text</span>";
955
+    } else {
956
+        return $text;
957
+    }
959 958
 }
960 959
 
961 960
 
@@ -969,13 +968,13 @@  discard block
 block discarded – undo
969 968
  * @return string
970 969
  */
971 970
 function joli_repertoire($rep) {
972
-	$a = substr($rep, 0, 1);
973
-	if ($a <> '.' and $a <> '/') {
974
-		$rep = (_DIR_RESTREINT ? '' : _DIR_RESTREINT_ABS) . $rep;
975
-	}
976
-	$rep = preg_replace(',(^\.\.\/),', '', $rep);
971
+    $a = substr($rep, 0, 1);
972
+    if ($a <> '.' and $a <> '/') {
973
+        $rep = (_DIR_RESTREINT ? '' : _DIR_RESTREINT_ABS) . $rep;
974
+    }
975
+    $rep = preg_replace(',(^\.\.\/),', '', $rep);
977 976
 
978
-	return $rep;
977
+    return $rep;
979 978
 }
980 979
 
981 980
 
@@ -1000,54 +999,54 @@  discard block
 block discarded – undo
1000 999
  * @return float|int|string|void
1001 1000
  */
1002 1001
 function spip_timer($t = 'rien', $raw = false) {
1003
-	static $time;
1004
-	$a = time();
1005
-	$b = microtime();
1006
-	// microtime peut contenir les microsecondes et le temps
1007
-	$b = explode(' ', $b);
1008
-	if (count($b) == 2) {
1009
-		$a = end($b);
1010
-	} // plus precis !
1011
-	$b = reset($b);
1012
-	if (!isset($time[$t])) {
1013
-		$time[$t] = $a + $b;
1014
-	} else {
1015
-		$p = ($a + $b - $time[$t]) * 1000;
1016
-		unset($time[$t]);
1002
+    static $time;
1003
+    $a = time();
1004
+    $b = microtime();
1005
+    // microtime peut contenir les microsecondes et le temps
1006
+    $b = explode(' ', $b);
1007
+    if (count($b) == 2) {
1008
+        $a = end($b);
1009
+    } // plus precis !
1010
+    $b = reset($b);
1011
+    if (!isset($time[$t])) {
1012
+        $time[$t] = $a + $b;
1013
+    } else {
1014
+        $p = ($a + $b - $time[$t]) * 1000;
1015
+        unset($time[$t]);
1017 1016
 #			echo "'$p'";exit;
1018
-		if ($raw) {
1019
-			return $p;
1020
-		}
1021
-		if ($p < 1000) {
1022
-			$s = '';
1023
-		} else {
1024
-			$s = sprintf('%d ', $x = floor($p / 1000));
1025
-			$p -= ($x * 1000);
1026
-		}
1017
+        if ($raw) {
1018
+            return $p;
1019
+        }
1020
+        if ($p < 1000) {
1021
+            $s = '';
1022
+        } else {
1023
+            $s = sprintf('%d ', $x = floor($p / 1000));
1024
+            $p -= ($x * 1000);
1025
+        }
1027 1026
 
1028
-		return $s . sprintf($s ? '%07.3f ms' : '%.3f ms', $p);
1029
-	}
1027
+        return $s . sprintf($s ? '%07.3f ms' : '%.3f ms', $p);
1028
+    }
1030 1029
 }
1031 1030
 
1032 1031
 
1033 1032
 // Renvoie False si un fichier n'est pas plus vieux que $duree secondes,
1034 1033
 // sinon renvoie True et le date sauf si ca n'est pas souhaite
1035 1034
 function spip_touch($fichier, $duree = 0, $touch = true) {
1036
-	if ($duree) {
1037
-		clearstatcache();
1038
-		if ((@$f = filemtime($fichier)) and ($f >= time() - $duree)) {
1039
-			return false;
1040
-		}
1041
-	}
1042
-	if ($touch !== false) {
1043
-		if (!@touch($fichier)) {
1044
-			spip_unlink($fichier);
1045
-			@touch($fichier);
1046
-		};
1047
-		@chmod($fichier, _SPIP_CHMOD & ~0111);
1048
-	}
1035
+    if ($duree) {
1036
+        clearstatcache();
1037
+        if ((@$f = filemtime($fichier)) and ($f >= time() - $duree)) {
1038
+            return false;
1039
+        }
1040
+    }
1041
+    if ($touch !== false) {
1042
+        if (!@touch($fichier)) {
1043
+            spip_unlink($fichier);
1044
+            @touch($fichier);
1045
+        };
1046
+        @chmod($fichier, _SPIP_CHMOD & ~0111);
1047
+    }
1049 1048
 
1050
-	return true;
1049
+    return true;
1051 1050
 }
1052 1051
 
1053 1052
 
@@ -1058,11 +1057,11 @@  discard block
 block discarded – undo
1058 1057
  * @uses cron()
1059 1058
  **/
1060 1059
 function action_cron() {
1061
-	include_spip('inc/headers');
1062
-	http_response_code(204); // No Content
1063
-	header('Connection: close');
1064
-	define('_DIRECT_CRON_FORCE', true);
1065
-	cron();
1060
+    include_spip('inc/headers');
1061
+    http_response_code(204); // No Content
1062
+    header('Connection: close');
1063
+    define('_DIRECT_CRON_FORCE', true);
1064
+    cron();
1066 1065
 }
1067 1066
 
1068 1067
 /**
@@ -1078,26 +1077,26 @@  discard block
 block discarded – undo
1078 1077
  *     True si la tache a pu être effectuée
1079 1078
  */
1080 1079
 function cron($taches = [], $taches_old = []) {
1081
-	// si pas en mode cron force, laisser tomber.
1082
-	if (!defined('_DIRECT_CRON_FORCE')) {
1083
-		return false;
1084
-	}
1085
-	if (!is_array($taches)) {
1086
-		$taches = $taches_old;
1087
-	} // compat anciens appels
1088
-	// si taches a inserer en base et base inaccessible, laisser tomber
1089
-	// sinon on ne verifie pas la connexion tout de suite, car si ca se trouve
1090
-	// queue_sleep_time_to_next_job() dira qu'il n'y a rien a faire
1091
-	// et on evite d'ouvrir une connexion pour rien (utilisation de _DIRECT_CRON_FORCE dans mes_options.php)
1092
-	if ($taches and count($taches) and !spip_connect()) {
1093
-		return false;
1094
-	}
1095
-	spip_log('cron !', 'jq' . _LOG_DEBUG);
1096
-	if ($genie = charger_fonction('genie', 'inc', true)) {
1097
-		return $genie($taches);
1098
-	}
1099
-
1100
-	return false;
1080
+    // si pas en mode cron force, laisser tomber.
1081
+    if (!defined('_DIRECT_CRON_FORCE')) {
1082
+        return false;
1083
+    }
1084
+    if (!is_array($taches)) {
1085
+        $taches = $taches_old;
1086
+    } // compat anciens appels
1087
+    // si taches a inserer en base et base inaccessible, laisser tomber
1088
+    // sinon on ne verifie pas la connexion tout de suite, car si ca se trouve
1089
+    // queue_sleep_time_to_next_job() dira qu'il n'y a rien a faire
1090
+    // et on evite d'ouvrir une connexion pour rien (utilisation de _DIRECT_CRON_FORCE dans mes_options.php)
1091
+    if ($taches and count($taches) and !spip_connect()) {
1092
+        return false;
1093
+    }
1094
+    spip_log('cron !', 'jq' . _LOG_DEBUG);
1095
+    if ($genie = charger_fonction('genie', 'inc', true)) {
1096
+        return $genie($taches);
1097
+    }
1098
+
1099
+    return false;
1101 1100
 }
1102 1101
 
1103 1102
 /**
@@ -1129,17 +1128,17 @@  discard block
 block discarded – undo
1129 1128
  *     Le numéro de travail ajouté ou `0` si aucun travail n’a été ajouté.
1130 1129
  */
1131 1130
 function job_queue_add(
1132
-	$function,
1133
-	$description,
1134
-	$arguments = [],
1135
-	$file = '',
1136
-	$no_duplicate = false,
1137
-	$time = 0,
1138
-	$priority = 0
1131
+    $function,
1132
+    $description,
1133
+    $arguments = [],
1134
+    $file = '',
1135
+    $no_duplicate = false,
1136
+    $time = 0,
1137
+    $priority = 0
1139 1138
 ) {
1140
-	include_spip('inc/queue');
1139
+    include_spip('inc/queue');
1141 1140
 
1142
-	return queue_add_job($function, $description, $arguments, $file, $no_duplicate, $time, $priority);
1141
+    return queue_add_job($function, $description, $arguments, $file, $no_duplicate, $time, $priority);
1143 1142
 }
1144 1143
 
1145 1144
 /**
@@ -1150,9 +1149,9 @@  discard block
 block discarded – undo
1150 1149
  * @return bool
1151 1150
  */
1152 1151
 function job_queue_remove($id_job) {
1153
-	include_spip('inc/queue');
1152
+    include_spip('inc/queue');
1154 1153
 
1155
-	return queue_remove_job($id_job);
1154
+    return queue_remove_job($id_job);
1156 1155
 }
1157 1156
 
1158 1157
 /**
@@ -1165,9 +1164,9 @@  discard block
 block discarded – undo
1165 1164
  *     or an array of simple array to link multiples objet in one time
1166 1165
  */
1167 1166
 function job_queue_link($id_job, $objets) {
1168
-	include_spip('inc/queue');
1167
+    include_spip('inc/queue');
1169 1168
 
1170
-	return queue_link_job($id_job, $objets);
1169
+    return queue_link_job($id_job, $objets);
1171 1170
 }
1172 1171
 
1173 1172
 
@@ -1187,36 +1186,36 @@  discard block
 block discarded – undo
1187 1186
  *  - `null` si la queue n'est pas encore initialisée
1188 1187
  */
1189 1188
 function queue_sleep_time_to_next_job($force = null) {
1190
-	static $queue_next_job_time = -1;
1191
-	if ($force === true) {
1192
-		$queue_next_job_time = -1;
1193
-	} elseif ($force) {
1194
-		$queue_next_job_time = $force;
1195
-	}
1196
-
1197
-	if ($queue_next_job_time == -1) {
1198
-		if (!defined('_JQ_NEXT_JOB_TIME_FILENAME')) {
1199
-			define('_JQ_NEXT_JOB_TIME_FILENAME', _DIR_TMP . 'job_queue_next.txt');
1200
-		}
1201
-		// utiliser un cache memoire si dispo
1202
-		if (function_exists('cache_get') and defined('_MEMOIZE_MEMORY') and _MEMOIZE_MEMORY) {
1203
-			$queue_next_job_time = cache_get(_JQ_NEXT_JOB_TIME_FILENAME);
1204
-		} else {
1205
-			$queue_next_job_time = null;
1206
-			if (lire_fichier(_JQ_NEXT_JOB_TIME_FILENAME, $contenu)) {
1207
-				$queue_next_job_time = intval($contenu);
1208
-			}
1209
-		}
1210
-	}
1211
-
1212
-	if (is_null($queue_next_job_time)) {
1213
-		return null;
1214
-	}
1215
-	if (!$_SERVER['REQUEST_TIME']) {
1216
-		$_SERVER['REQUEST_TIME'] = time();
1217
-	}
1218
-
1219
-	return $queue_next_job_time - $_SERVER['REQUEST_TIME'];
1189
+    static $queue_next_job_time = -1;
1190
+    if ($force === true) {
1191
+        $queue_next_job_time = -1;
1192
+    } elseif ($force) {
1193
+        $queue_next_job_time = $force;
1194
+    }
1195
+
1196
+    if ($queue_next_job_time == -1) {
1197
+        if (!defined('_JQ_NEXT_JOB_TIME_FILENAME')) {
1198
+            define('_JQ_NEXT_JOB_TIME_FILENAME', _DIR_TMP . 'job_queue_next.txt');
1199
+        }
1200
+        // utiliser un cache memoire si dispo
1201
+        if (function_exists('cache_get') and defined('_MEMOIZE_MEMORY') and _MEMOIZE_MEMORY) {
1202
+            $queue_next_job_time = cache_get(_JQ_NEXT_JOB_TIME_FILENAME);
1203
+        } else {
1204
+            $queue_next_job_time = null;
1205
+            if (lire_fichier(_JQ_NEXT_JOB_TIME_FILENAME, $contenu)) {
1206
+                $queue_next_job_time = intval($contenu);
1207
+            }
1208
+        }
1209
+    }
1210
+
1211
+    if (is_null($queue_next_job_time)) {
1212
+        return null;
1213
+    }
1214
+    if (!$_SERVER['REQUEST_TIME']) {
1215
+        $_SERVER['REQUEST_TIME'] = time();
1216
+    }
1217
+
1218
+    return $queue_next_job_time - $_SERVER['REQUEST_TIME'];
1220 1219
 }
1221 1220
 
1222 1221
 
@@ -1228,11 +1227,11 @@  discard block
 block discarded – undo
1228 1227
  * @return string
1229 1228
  */
1230 1229
 function quote_amp($u) {
1231
-	return preg_replace(
1232
-		'/&(?![a-z]{0,4}\w{2,3};|#x?[0-9a-f]{2,6};)/i',
1233
-		'&amp;',
1234
-		$u
1235
-	);
1230
+    return preg_replace(
1231
+        '/&(?![a-z]{0,4}\w{2,3};|#x?[0-9a-f]{2,6};)/i',
1232
+        '&amp;',
1233
+        $u
1234
+    );
1236 1235
 }
1237 1236
 
1238 1237
 
@@ -1255,27 +1254,27 @@  discard block
 block discarded – undo
1255 1254
  *     Balise HTML `<script>` et son contenu
1256 1255
  **/
1257 1256
 function http_script($script, $src = '', $noscript = '') {
1258
-	static $done = [];
1257
+    static $done = [];
1259 1258
 
1260
-	if ($src && !isset($done[$src])) {
1261
-		$done[$src] = true;
1262
-		$src = find_in_path($src, _JAVASCRIPT);
1263
-		$src = " src='$src'";
1264
-	} else {
1265
-		$src = '';
1266
-	}
1267
-	if ($script) {
1268
-		$script = ("/*<![CDATA[*/\n" .
1269
-			preg_replace(',</([^>]*)>,', '<\/\1>', $script) .
1270
-			'/*]]>*/');
1271
-	}
1272
-	if ($noscript) {
1273
-		$noscript = "<noscript>\n\t$noscript\n</noscript>\n";
1274
-	}
1259
+    if ($src && !isset($done[$src])) {
1260
+        $done[$src] = true;
1261
+        $src = find_in_path($src, _JAVASCRIPT);
1262
+        $src = " src='$src'";
1263
+    } else {
1264
+        $src = '';
1265
+    }
1266
+    if ($script) {
1267
+        $script = ("/*<![CDATA[*/\n" .
1268
+            preg_replace(',</([^>]*)>,', '<\/\1>', $script) .
1269
+            '/*]]>*/');
1270
+    }
1271
+    if ($noscript) {
1272
+        $noscript = "<noscript>\n\t$noscript\n</noscript>\n";
1273
+    }
1275 1274
 
1276
-	return ($src or $script or $noscript)
1277
-		? "<script type='text/javascript'$src>$script</script>$noscript"
1278
-		: '';
1275
+    return ($src or $script or $noscript)
1276
+        ? "<script type='text/javascript'$src>$script</script>$noscript"
1277
+        : '';
1279 1278
 }
1280 1279
 
1281 1280
 
@@ -1310,7 +1309,7 @@  discard block
 block discarded – undo
1310 1309
  *     Texte échappé
1311 1310
  **/
1312 1311
 function texte_script(string $texte): string {
1313
-	return str_replace('\'', '\\\'', str_replace('\\', '\\\\', $texte));
1312
+    return str_replace('\'', '\\\'', str_replace('\\', '\\\\', $texte));
1314 1313
 }
1315 1314
 
1316 1315
 
@@ -1347,68 +1346,68 @@  discard block
 block discarded – undo
1347 1346
  *     Liste des chemins, par ordre de priorité.
1348 1347
  **/
1349 1348
 function _chemin($dir_path = null) {
1350
-	static $path_base = null;
1351
-	static $path_full = null;
1352
-	if ($path_base == null) {
1353
-		// Chemin standard depuis l'espace public
1354
-		$path = defined('_SPIP_PATH') ? _SPIP_PATH :
1355
-			_DIR_RACINE . ':' .
1356
-			_DIR_RACINE . 'squelettes-dist/:' .
1357
-			_DIR_RACINE . 'prive/:' .
1358
-			_DIR_RESTREINT;
1359
-		// Ajouter squelettes/
1360
-		if (@is_dir(_DIR_RACINE . 'squelettes')) {
1361
-			$path = _DIR_RACINE . 'squelettes/:' . $path;
1362
-		}
1363
-		foreach (explode(':', $path) as $dir) {
1364
-			if (strlen($dir) and substr($dir, -1) != '/') {
1365
-				$dir .= '/';
1366
-			}
1367
-			$path_base[] = $dir;
1368
-		}
1369
-		$path_full = $path_base;
1370
-		// Et le(s) dossier(s) des squelettes nommes
1371
-		if (strlen($GLOBALS['dossier_squelettes'])) {
1372
-			foreach (array_reverse(explode(':', $GLOBALS['dossier_squelettes'])) as $d) {
1373
-				array_unshift($path_full, ($d[0] == '/' ? '' : _DIR_RACINE) . $d . '/');
1374
-			}
1375
-		}
1376
-		$GLOBALS['path_sig'] = md5(serialize($path_full));
1377
-	}
1378
-	if ($dir_path === null) {
1379
-		return $path_full;
1380
-	}
1381
-
1382
-	if (is_array($dir_path) or strlen($dir_path)) {
1383
-		$tete = '';
1384
-		if (reset($path_base) == _DIR_RACINE . 'squelettes/') {
1385
-			$tete = array_shift($path_base);
1386
-		}
1387
-		$dirs = (is_array($dir_path) ? $dir_path : explode(':', $dir_path));
1388
-		$dirs = array_reverse($dirs);
1389
-		foreach ($dirs as $dir_path) {
1390
-			if (substr($dir_path, -1) != '/') {
1391
-				$dir_path .= '/';
1392
-			}
1393
-			if (!in_array($dir_path, $path_base)) {
1394
-				array_unshift($path_base, $dir_path);
1395
-			}
1396
-		}
1397
-		if (strlen($tete)) {
1398
-			array_unshift($path_base, $tete);
1399
-		}
1400
-	}
1401
-	$path_full = $path_base;
1402
-	// Et le(s) dossier(s) des squelettes nommes
1403
-	if (strlen($GLOBALS['dossier_squelettes'])) {
1404
-		foreach (array_reverse(explode(':', $GLOBALS['dossier_squelettes'])) as $d) {
1405
-			array_unshift($path_full, ((isset($d[0]) and $d[0] == '/') ? '' : _DIR_RACINE) . $d . '/');
1406
-		}
1407
-	}
1408
-
1409
-	$GLOBALS['path_sig'] = md5(serialize($path_full));
1410
-
1411
-	return $path_full;
1349
+    static $path_base = null;
1350
+    static $path_full = null;
1351
+    if ($path_base == null) {
1352
+        // Chemin standard depuis l'espace public
1353
+        $path = defined('_SPIP_PATH') ? _SPIP_PATH :
1354
+            _DIR_RACINE . ':' .
1355
+            _DIR_RACINE . 'squelettes-dist/:' .
1356
+            _DIR_RACINE . 'prive/:' .
1357
+            _DIR_RESTREINT;
1358
+        // Ajouter squelettes/
1359
+        if (@is_dir(_DIR_RACINE . 'squelettes')) {
1360
+            $path = _DIR_RACINE . 'squelettes/:' . $path;
1361
+        }
1362
+        foreach (explode(':', $path) as $dir) {
1363
+            if (strlen($dir) and substr($dir, -1) != '/') {
1364
+                $dir .= '/';
1365
+            }
1366
+            $path_base[] = $dir;
1367
+        }
1368
+        $path_full = $path_base;
1369
+        // Et le(s) dossier(s) des squelettes nommes
1370
+        if (strlen($GLOBALS['dossier_squelettes'])) {
1371
+            foreach (array_reverse(explode(':', $GLOBALS['dossier_squelettes'])) as $d) {
1372
+                array_unshift($path_full, ($d[0] == '/' ? '' : _DIR_RACINE) . $d . '/');
1373
+            }
1374
+        }
1375
+        $GLOBALS['path_sig'] = md5(serialize($path_full));
1376
+    }
1377
+    if ($dir_path === null) {
1378
+        return $path_full;
1379
+    }
1380
+
1381
+    if (is_array($dir_path) or strlen($dir_path)) {
1382
+        $tete = '';
1383
+        if (reset($path_base) == _DIR_RACINE . 'squelettes/') {
1384
+            $tete = array_shift($path_base);
1385
+        }
1386
+        $dirs = (is_array($dir_path) ? $dir_path : explode(':', $dir_path));
1387
+        $dirs = array_reverse($dirs);
1388
+        foreach ($dirs as $dir_path) {
1389
+            if (substr($dir_path, -1) != '/') {
1390
+                $dir_path .= '/';
1391
+            }
1392
+            if (!in_array($dir_path, $path_base)) {
1393
+                array_unshift($path_base, $dir_path);
1394
+            }
1395
+        }
1396
+        if (strlen($tete)) {
1397
+            array_unshift($path_base, $tete);
1398
+        }
1399
+    }
1400
+    $path_full = $path_base;
1401
+    // Et le(s) dossier(s) des squelettes nommes
1402
+    if (strlen($GLOBALS['dossier_squelettes'])) {
1403
+        foreach (array_reverse(explode(':', $GLOBALS['dossier_squelettes'])) as $d) {
1404
+            array_unshift($path_full, ((isset($d[0]) and $d[0] == '/') ? '' : _DIR_RACINE) . $d . '/');
1405
+        }
1406
+    }
1407
+
1408
+    $GLOBALS['path_sig'] = md5(serialize($path_full));
1409
+
1410
+    return $path_full;
1412 1411
 }
1413 1412
 
1414 1413
 /**
@@ -1421,78 +1420,78 @@  discard block
 block discarded – undo
1421 1420
  * @return array Liste de chemins
1422 1421
  **/
1423 1422
 function creer_chemin() {
1424
-	$path_a = _chemin();
1425
-	static $c = '';
1423
+    $path_a = _chemin();
1424
+    static $c = '';
1426 1425
 
1427
-	// on calcule le chemin si le dossier skel a change
1428
-	if ($c != $GLOBALS['dossier_squelettes']) {
1429
-		// assurer le non plantage lors de la montee de version :
1430
-		$c = $GLOBALS['dossier_squelettes'];
1431
-		$path_a = _chemin(''); // forcer un recalcul du chemin
1432
-	}
1426
+    // on calcule le chemin si le dossier skel a change
1427
+    if ($c != $GLOBALS['dossier_squelettes']) {
1428
+        // assurer le non plantage lors de la montee de version :
1429
+        $c = $GLOBALS['dossier_squelettes'];
1430
+        $path_a = _chemin(''); // forcer un recalcul du chemin
1431
+    }
1433 1432
 
1434
-	return $path_a;
1433
+    return $path_a;
1435 1434
 }
1436 1435
 
1437 1436
 
1438 1437
 function lister_themes_prives() {
1439
-	static $themes = null;
1440
-	if (is_null($themes)) {
1441
-		// si pas encore definie
1442
-		if (!defined('_SPIP_THEME_PRIVE')) {
1443
-			define('_SPIP_THEME_PRIVE', 'spip');
1444
-		}
1445
-		$themes = [_SPIP_THEME_PRIVE];
1446
-		// lors d'une installation neuve, prefs n'est pas definie.
1447
-		if (isset($GLOBALS['visiteur_session']['prefs'])) {
1448
-			$prefs = $GLOBALS['visiteur_session']['prefs'];
1449
-		} else {
1450
-			$prefs = [];
1451
-		}
1452
-		if (is_string($prefs)) {
1453
-			$prefs = unserialize($GLOBALS['visiteur_session']['prefs']);
1454
-		}
1455
-		if (
1456
-			((isset($prefs['theme']) and $theme = $prefs['theme'])
1457
-				or (isset($GLOBALS['theme_prive_defaut']) and $theme = $GLOBALS['theme_prive_defaut']))
1458
-			and $theme != _SPIP_THEME_PRIVE
1459
-		) {
1460
-			array_unshift($themes, $theme);
1461
-		} // placer le theme choisi en tete
1462
-	}
1463
-
1464
-	return $themes;
1438
+    static $themes = null;
1439
+    if (is_null($themes)) {
1440
+        // si pas encore definie
1441
+        if (!defined('_SPIP_THEME_PRIVE')) {
1442
+            define('_SPIP_THEME_PRIVE', 'spip');
1443
+        }
1444
+        $themes = [_SPIP_THEME_PRIVE];
1445
+        // lors d'une installation neuve, prefs n'est pas definie.
1446
+        if (isset($GLOBALS['visiteur_session']['prefs'])) {
1447
+            $prefs = $GLOBALS['visiteur_session']['prefs'];
1448
+        } else {
1449
+            $prefs = [];
1450
+        }
1451
+        if (is_string($prefs)) {
1452
+            $prefs = unserialize($GLOBALS['visiteur_session']['prefs']);
1453
+        }
1454
+        if (
1455
+            ((isset($prefs['theme']) and $theme = $prefs['theme'])
1456
+                or (isset($GLOBALS['theme_prive_defaut']) and $theme = $GLOBALS['theme_prive_defaut']))
1457
+            and $theme != _SPIP_THEME_PRIVE
1458
+        ) {
1459
+            array_unshift($themes, $theme);
1460
+        } // placer le theme choisi en tete
1461
+    }
1462
+
1463
+    return $themes;
1465 1464
 }
1466 1465
 
1467 1466
 function find_in_theme($file, $subdir = '', $include = false) {
1468
-	static $themefiles = [];
1469
-	if (isset($themefiles["$subdir$file"])) {
1470
-		return $themefiles["$subdir$file"];
1471
-	}
1472
-	// on peut fournir une icone generique -xx.svg qui fera le job dans toutes les tailles, et qui est prioritaire sur le png
1473
-	// si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png
1474
-	if (
1475
-		preg_match(',-(\d+)[.](png|gif|svg)$,', $file, $m)
1476
-		and $file_svg_generique = substr($file, 0, -strlen($m[0])) . '-xx.svg'
1477
-		and $f = find_in_theme("$file_svg_generique")
1478
-	) {
1479
-		if ($fsize = substr($f, 0, -6) . $m[1] . '.svg' and file_exists($fsize)) {
1480
-			return $themefiles["$subdir$file"] = $fsize;
1481
-		}
1482
-		else {
1483
-			return $themefiles["$subdir$file"] = "$f?" . $m[1] . 'px';
1484
-		}
1485
-	}
1486
-
1487
-	$themes = lister_themes_prives();
1488
-	foreach ($themes as $theme) {
1489
-		if ($f = find_in_path($file, "prive/themes/$theme/$subdir", $include)) {
1490
-			return $themefiles["$subdir$file"] = $f;
1491
-		}
1492
-	}
1493
-	spip_log("$file introuvable dans le theme prive " . reset($themes), 'theme');
1494
-
1495
-	return $themefiles["$subdir$file"] = '';
1467
+    static $themefiles = [];
1468
+    if (isset($themefiles["$subdir$file"])) {
1469
+        return $themefiles["$subdir$file"];
1470
+    }
1471
+    // on peut fournir une icone generique -xx.svg qui fera le job dans toutes les tailles, et qui est prioritaire sur le png
1472
+    // si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png
1473
+    if (
1474
+        preg_match(',-(\d+)[.](png|gif|svg)$,', $file, $m)
1475
+        and $file_svg_generique = substr($file, 0, -strlen($m[0])) . '-xx.svg'
1476
+        and $f = find_in_theme("$file_svg_generique")
1477
+    ) {
1478
+        if ($fsize = substr($f, 0, -6) . $m[1] . '.svg' and file_exists($fsize)) {
1479
+            return $themefiles["$subdir$file"] = $fsize;
1480
+        }
1481
+        else {
1482
+            return $themefiles["$subdir$file"] = "$f?" . $m[1] . 'px';
1483
+        }
1484
+    }
1485
+
1486
+    $themes = lister_themes_prives();
1487
+    foreach ($themes as $theme) {
1488
+        if ($f = find_in_path($file, "prive/themes/$theme/$subdir", $include)) {
1489
+            return $themefiles["$subdir$file"] = $f;
1490
+        }
1491
+    }
1492
+    spip_log("$file introuvable dans le theme prive " . reset($themes), 'theme');
1493
+
1494
+    return $themefiles["$subdir$file"] = '';
1496 1495
 }
1497 1496
 
1498 1497
 
@@ -1516,31 +1515,31 @@  discard block
 block discarded – undo
1516 1515
  *     sinon chaîne vide.
1517 1516
  **/
1518 1517
 function chemin_image($icone) {
1519
-	static $icone_renommer;
1520
-	if ($p = strpos($icone, '?')) {
1521
-		$icone = substr($icone, 0, $p);
1522
-	}
1523
-	// gerer le cas d'un double appel en evitant de refaire le travail inutilement
1524
-	if (strpos($icone, '/') !== false and file_exists($icone)) {
1525
-		return $icone;
1526
-	}
1527
-
1528
-	// si c'est un nom d'image complet (article-24.png) essayer de le renvoyer direct
1529
-	if (preg_match(',[.](png|gif|jpg|webp|svg)$,', $icone) and $f = find_in_theme("images/$icone")) {
1530
-		return $f;
1531
-	}
1532
-	// sinon passer par le module de renommage
1533
-	if (is_null($icone_renommer)) {
1534
-		$icone_renommer = charger_fonction('icone_renommer', 'inc', true);
1535
-	}
1536
-	if ($icone_renommer) {
1537
-		[$icone, $fonction] = $icone_renommer($icone, '');
1538
-		if (file_exists($icone)) {
1539
-			return $icone;
1540
-		}
1541
-	}
1542
-
1543
-	return find_in_path($icone, _NOM_IMG_PACK);
1518
+    static $icone_renommer;
1519
+    if ($p = strpos($icone, '?')) {
1520
+        $icone = substr($icone, 0, $p);
1521
+    }
1522
+    // gerer le cas d'un double appel en evitant de refaire le travail inutilement
1523
+    if (strpos($icone, '/') !== false and file_exists($icone)) {
1524
+        return $icone;
1525
+    }
1526
+
1527
+    // si c'est un nom d'image complet (article-24.png) essayer de le renvoyer direct
1528
+    if (preg_match(',[.](png|gif|jpg|webp|svg)$,', $icone) and $f = find_in_theme("images/$icone")) {
1529
+        return $f;
1530
+    }
1531
+    // sinon passer par le module de renommage
1532
+    if (is_null($icone_renommer)) {
1533
+        $icone_renommer = charger_fonction('icone_renommer', 'inc', true);
1534
+    }
1535
+    if ($icone_renommer) {
1536
+        [$icone, $fonction] = $icone_renommer($icone, '');
1537
+        if (file_exists($icone)) {
1538
+            return $icone;
1539
+        }
1540
+    }
1541
+
1542
+    return find_in_path($icone, _NOM_IMG_PACK);
1544 1543
 }
1545 1544
 
1546 1545
 //
@@ -1578,128 +1577,128 @@  discard block
 block discarded – undo
1578 1577
  *     - false : fichier introuvable
1579 1578
  **/
1580 1579
 function find_in_path($file, $dirname = '', $include = false) {
1581
-	static $dirs = [];
1582
-	static $inc = []; # cf https://git.spip.net/spip/spip/commit/42e4e028e38c839121efaee84308d08aee307eec
1583
-	static $c = '';
1584
-
1585
-	if (!$file and !strlen($file)) {
1586
-		return false;
1587
-	}
1588
-
1589
-	// on calcule le chemin si le dossier skel a change
1590
-	if ($c != $GLOBALS['dossier_squelettes']) {
1591
-		// assurer le non plantage lors de la montee de version :
1592
-		$c = $GLOBALS['dossier_squelettes'];
1593
-		creer_chemin(); // forcer un recalcul du chemin et la mise a jour de path_sig
1594
-	}
1595
-
1596
-	if (isset($GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file])) {
1597
-		if (!$GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file]) {
1598
-			return false;
1599
-		}
1600
-		if ($include and !isset($inc[$dirname][$file])) {
1601
-			include_once _ROOT_CWD . $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file];
1602
-			$inc[$dirname][$file] = $inc[''][$dirname . $file] = true;
1603
-		}
1604
-
1605
-		return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file];
1606
-	}
1607
-
1608
-	$a = strrpos($file, '/');
1609
-	if ($a !== false) {
1610
-		$dirname .= substr($file, 0, ++$a);
1611
-		$file = substr($file, $a);
1612
-	}
1613
-
1614
-	foreach (creer_chemin() as $dir) {
1615
-		if (!isset($dirs[$a = $dir . $dirname])) {
1616
-			$dirs[$a] = (is_dir(_ROOT_CWD . $a) || !$a);
1617
-		}
1618
-		if ($dirs[$a]) {
1619
-			if (file_exists(_ROOT_CWD . ($a .= $file))) {
1620
-				if ($include and !isset($inc[$dirname][$file])) {
1621
-					include_once _ROOT_CWD . $a;
1622
-					$inc[$dirname][$file] = $inc[''][$dirname . $file] = true;
1623
-				}
1624
-				if (!defined('_SAUVER_CHEMIN')) {
1625
-					// si le chemin n'a pas encore ete charge, ne pas lever le flag, ne pas cacher
1626
-					if (is_null($GLOBALS['path_files'])) {
1627
-						return $a;
1628
-					}
1629
-					define('_SAUVER_CHEMIN', true);
1630
-				}
1631
-
1632
-				return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file] = $GLOBALS['path_files'][$GLOBALS['path_sig']][''][$dirname . $file] = $a;
1633
-			}
1634
-		}
1635
-	}
1636
-
1637
-	if ($include) {
1638
-		spip_log("include_spip $dirname$file non trouve");
1639
-		if ($include === 'required') {
1640
-			echo '<pre>',
1641
-			'<strong>Erreur Fatale</strong><br />';
1642
-			if (function_exists('debug_print_backtrace')) {
1643
-				echo debug_print_backtrace();
1644
-			}
1645
-			echo '</pre>';
1646
-			die("Erreur interne: ne peut inclure $dirname$file");
1647
-		}
1648
-	}
1649
-
1650
-	if (!defined('_SAUVER_CHEMIN')) {
1651
-		// si le chemin n'a pas encore ete charge, ne pas lever le flag, ne pas cacher
1652
-		if (is_null($GLOBALS['path_files'])) {
1653
-			return false;
1654
-		}
1655
-		define('_SAUVER_CHEMIN', true);
1656
-	}
1657
-
1658
-	return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file] = $GLOBALS['path_files'][$GLOBALS['path_sig']][''][$dirname . $file] = false;
1580
+    static $dirs = [];
1581
+    static $inc = []; # cf https://git.spip.net/spip/spip/commit/42e4e028e38c839121efaee84308d08aee307eec
1582
+    static $c = '';
1583
+
1584
+    if (!$file and !strlen($file)) {
1585
+        return false;
1586
+    }
1587
+
1588
+    // on calcule le chemin si le dossier skel a change
1589
+    if ($c != $GLOBALS['dossier_squelettes']) {
1590
+        // assurer le non plantage lors de la montee de version :
1591
+        $c = $GLOBALS['dossier_squelettes'];
1592
+        creer_chemin(); // forcer un recalcul du chemin et la mise a jour de path_sig
1593
+    }
1594
+
1595
+    if (isset($GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file])) {
1596
+        if (!$GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file]) {
1597
+            return false;
1598
+        }
1599
+        if ($include and !isset($inc[$dirname][$file])) {
1600
+            include_once _ROOT_CWD . $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file];
1601
+            $inc[$dirname][$file] = $inc[''][$dirname . $file] = true;
1602
+        }
1603
+
1604
+        return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file];
1605
+    }
1606
+
1607
+    $a = strrpos($file, '/');
1608
+    if ($a !== false) {
1609
+        $dirname .= substr($file, 0, ++$a);
1610
+        $file = substr($file, $a);
1611
+    }
1612
+
1613
+    foreach (creer_chemin() as $dir) {
1614
+        if (!isset($dirs[$a = $dir . $dirname])) {
1615
+            $dirs[$a] = (is_dir(_ROOT_CWD . $a) || !$a);
1616
+        }
1617
+        if ($dirs[$a]) {
1618
+            if (file_exists(_ROOT_CWD . ($a .= $file))) {
1619
+                if ($include and !isset($inc[$dirname][$file])) {
1620
+                    include_once _ROOT_CWD . $a;
1621
+                    $inc[$dirname][$file] = $inc[''][$dirname . $file] = true;
1622
+                }
1623
+                if (!defined('_SAUVER_CHEMIN')) {
1624
+                    // si le chemin n'a pas encore ete charge, ne pas lever le flag, ne pas cacher
1625
+                    if (is_null($GLOBALS['path_files'])) {
1626
+                        return $a;
1627
+                    }
1628
+                    define('_SAUVER_CHEMIN', true);
1629
+                }
1630
+
1631
+                return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file] = $GLOBALS['path_files'][$GLOBALS['path_sig']][''][$dirname . $file] = $a;
1632
+            }
1633
+        }
1634
+    }
1635
+
1636
+    if ($include) {
1637
+        spip_log("include_spip $dirname$file non trouve");
1638
+        if ($include === 'required') {
1639
+            echo '<pre>',
1640
+            '<strong>Erreur Fatale</strong><br />';
1641
+            if (function_exists('debug_print_backtrace')) {
1642
+                echo debug_print_backtrace();
1643
+            }
1644
+            echo '</pre>';
1645
+            die("Erreur interne: ne peut inclure $dirname$file");
1646
+        }
1647
+    }
1648
+
1649
+    if (!defined('_SAUVER_CHEMIN')) {
1650
+        // si le chemin n'a pas encore ete charge, ne pas lever le flag, ne pas cacher
1651
+        if (is_null($GLOBALS['path_files'])) {
1652
+            return false;
1653
+        }
1654
+        define('_SAUVER_CHEMIN', true);
1655
+    }
1656
+
1657
+    return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file] = $GLOBALS['path_files'][$GLOBALS['path_sig']][''][$dirname . $file] = false;
1659 1658
 }
1660 1659
 
1661 1660
 function clear_path_cache() {
1662
-	$GLOBALS['path_files'] = [];
1663
-	spip_unlink(_CACHE_CHEMIN);
1661
+    $GLOBALS['path_files'] = [];
1662
+    spip_unlink(_CACHE_CHEMIN);
1664 1663
 }
1665 1664
 
1666 1665
 function load_path_cache() {
1667
-	// charger le path des plugins
1668
-	if (@is_readable(_CACHE_PLUGINS_PATH)) {
1669
-		include_once(_CACHE_PLUGINS_PATH);
1670
-	}
1671
-	$GLOBALS['path_files'] = [];
1672
-	// si le visiteur est admin,
1673
-	// on ne recharge pas le cache pour forcer sa mise a jour
1674
-	if (
1675
-		// la session n'est pas encore chargee a ce moment, on ne peut donc pas s'y fier
1676
-		//AND (!isset($GLOBALS['visiteur_session']['statut']) OR $GLOBALS['visiteur_session']['statut']!='0minirezo')
1677
-		// utiliser le cookie est un pis aller qui marche 'en general'
1678
-		// on blinde par un second test au moment de la lecture de la session
1679
-		// !isset($_COOKIE[$GLOBALS['cookie_prefix'].'_admin'])
1680
-		// et en ignorant ce cache en cas de recalcul explicite
1681
-		!_request('var_mode')
1682
-	) {
1683
-		// on essaye de lire directement sans verrou pour aller plus vite
1684
-		if ($contenu = spip_file_get_contents(_CACHE_CHEMIN)) {
1685
-			// mais si semble corrompu on relit avec un verrou
1686
-			if (!$GLOBALS['path_files'] = unserialize($contenu)) {
1687
-				lire_fichier(_CACHE_CHEMIN, $contenu);
1688
-				if (!$GLOBALS['path_files'] = unserialize($contenu)) {
1689
-					$GLOBALS['path_files'] = [];
1690
-				}
1691
-			}
1692
-		}
1693
-	}
1666
+    // charger le path des plugins
1667
+    if (@is_readable(_CACHE_PLUGINS_PATH)) {
1668
+        include_once(_CACHE_PLUGINS_PATH);
1669
+    }
1670
+    $GLOBALS['path_files'] = [];
1671
+    // si le visiteur est admin,
1672
+    // on ne recharge pas le cache pour forcer sa mise a jour
1673
+    if (
1674
+        // la session n'est pas encore chargee a ce moment, on ne peut donc pas s'y fier
1675
+        //AND (!isset($GLOBALS['visiteur_session']['statut']) OR $GLOBALS['visiteur_session']['statut']!='0minirezo')
1676
+        // utiliser le cookie est un pis aller qui marche 'en general'
1677
+        // on blinde par un second test au moment de la lecture de la session
1678
+        // !isset($_COOKIE[$GLOBALS['cookie_prefix'].'_admin'])
1679
+        // et en ignorant ce cache en cas de recalcul explicite
1680
+        !_request('var_mode')
1681
+    ) {
1682
+        // on essaye de lire directement sans verrou pour aller plus vite
1683
+        if ($contenu = spip_file_get_contents(_CACHE_CHEMIN)) {
1684
+            // mais si semble corrompu on relit avec un verrou
1685
+            if (!$GLOBALS['path_files'] = unserialize($contenu)) {
1686
+                lire_fichier(_CACHE_CHEMIN, $contenu);
1687
+                if (!$GLOBALS['path_files'] = unserialize($contenu)) {
1688
+                    $GLOBALS['path_files'] = [];
1689
+                }
1690
+            }
1691
+        }
1692
+    }
1694 1693
 }
1695 1694
 
1696 1695
 function save_path_cache() {
1697
-	if (
1698
-		defined('_SAUVER_CHEMIN')
1699
-		and _SAUVER_CHEMIN
1700
-	) {
1701
-		ecrire_fichier(_CACHE_CHEMIN, serialize($GLOBALS['path_files']));
1702
-	}
1696
+    if (
1697
+        defined('_SAUVER_CHEMIN')
1698
+        and _SAUVER_CHEMIN
1699
+    ) {
1700
+        ecrire_fichier(_CACHE_CHEMIN, serialize($GLOBALS['path_files']));
1701
+    }
1703 1702
 }
1704 1703
 
1705 1704
 
@@ -1719,33 +1718,33 @@  discard block
 block discarded – undo
1719 1718
  * @return array
1720 1719
  */
1721 1720
 function find_all_in_path($dir, $pattern, $recurs = false) {
1722
-	$liste_fichiers = [];
1723
-	$maxfiles = 10000;
1724
-
1725
-	// cas borderline si dans mes_options on appelle redirige_par_entete qui utilise _T et charge un fichier de langue
1726
-	// on a pas encore inclus flock.php
1727
-	if (!function_exists('preg_files')) {
1728
-		include_once _ROOT_RESTREINT . 'inc/flock.php';
1729
-	}
1730
-
1731
-	// Parcourir le chemin
1732
-	foreach (creer_chemin() as $d) {
1733
-		$f = $d . $dir;
1734
-		if (@is_dir($f)) {
1735
-			$liste = preg_files($f, $pattern, $maxfiles - count($liste_fichiers), $recurs === true ? [] : $recurs);
1736
-			foreach ($liste as $chemin) {
1737
-				$nom = basename($chemin);
1738
-				// ne prendre que les fichiers pas deja trouves
1739
-				// car find_in_path prend le premier qu'il trouve,
1740
-				// les autres sont donc masques
1741
-				if (!isset($liste_fichiers[$nom])) {
1742
-					$liste_fichiers[$nom] = $chemin;
1743
-				}
1744
-			}
1745
-		}
1746
-	}
1747
-
1748
-	return $liste_fichiers;
1721
+    $liste_fichiers = [];
1722
+    $maxfiles = 10000;
1723
+
1724
+    // cas borderline si dans mes_options on appelle redirige_par_entete qui utilise _T et charge un fichier de langue
1725
+    // on a pas encore inclus flock.php
1726
+    if (!function_exists('preg_files')) {
1727
+        include_once _ROOT_RESTREINT . 'inc/flock.php';
1728
+    }
1729
+
1730
+    // Parcourir le chemin
1731
+    foreach (creer_chemin() as $d) {
1732
+        $f = $d . $dir;
1733
+        if (@is_dir($f)) {
1734
+            $liste = preg_files($f, $pattern, $maxfiles - count($liste_fichiers), $recurs === true ? [] : $recurs);
1735
+            foreach ($liste as $chemin) {
1736
+                $nom = basename($chemin);
1737
+                // ne prendre que les fichiers pas deja trouves
1738
+                // car find_in_path prend le premier qu'il trouve,
1739
+                // les autres sont donc masques
1740
+                if (!isset($liste_fichiers[$nom])) {
1741
+                    $liste_fichiers[$nom] = $chemin;
1742
+                }
1743
+            }
1744
+        }
1745
+    }
1746
+
1747
+    return $liste_fichiers;
1749 1748
 }
1750 1749
 
1751 1750
 /**
@@ -1757,17 +1756,17 @@  discard block
 block discarded – undo
1757 1756
  * @return bool
1758 1757
  */
1759 1758
 function autoriser_sans_cookie($nom, $strict = false) {
1760
-	static $autsanscookie = ['install', 'base_repair'];
1759
+    static $autsanscookie = ['install', 'base_repair'];
1761 1760
 
1762
-	if (in_array($nom, $autsanscookie)) {
1763
-		if (test_espace_prive()) {
1764
-			include_spip('base/connect_sql');
1765
-			if (!$strict or !spip_connect()) {
1766
-				return true;
1767
-			}
1768
-		}
1769
-	}
1770
-	return false;
1761
+    if (in_array($nom, $autsanscookie)) {
1762
+        if (test_espace_prive()) {
1763
+            include_spip('base/connect_sql');
1764
+            if (!$strict or !spip_connect()) {
1765
+                return true;
1766
+            }
1767
+        }
1768
+    }
1769
+    return false;
1771 1770
 }
1772 1771
 
1773 1772
 /**
@@ -1777,60 +1776,60 @@  discard block
 block discarded – undo
1777 1776
  * @return string
1778 1777
  */
1779 1778
 function charger_fonction_url(string $quoi, string $type = '') {
1780
-	if ($type === 'defaut') {
1781
-		$objet = objet_type($quoi);
1782
-		if (
1783
-			$f = charger_fonction('generer_' . $objet . '_url', 'urls', true)
1784
-			// deprecated
1785
-			or $f = charger_fonction('generer_url_' . $objet, 'urls', true)
1786
-		) {
1787
-			return $f;
1788
-		}
1789
-		return '';
1790
-	}
1791
-
1792
-	$url_type = $type;
1793
-	if (!$url_type) {
1794
-		$url_type = $GLOBALS['type_urls'] ?? $GLOBALS['meta']['type_urls'] ?? 'page'; // sinon type "page" par défaut
1795
-	}
1796
-
1797
-	// inclure le module d'url
1798
-	include_spip('urls/' . $url_type);
1799
-
1800
-	switch ($quoi) {
1801
-		case 'page':
1802
-			if (
1803
-				 function_exists($f = "urls_{$url_type}_generer_url_page")
1804
-				or function_exists($f .= '_dist')
1805
-				// ou une fonction custom utilisateur independante du type d'url
1806
-				or function_exists($f = 'generer_url_page')
1807
-				or function_exists($f .= '_dist')
1808
-			) {
1809
-				return $f;
1810
-			}
1811
-			// pas de compat ancienne version ici, c'est une nouvelle feature
1812
-			return '';
1813
-		case 'objet':
1814
-		case 'decoder':
1815
-		default:
1816
-			$fquoi = ($quoi === 'objet' ? 'generer_url_objet' : 'decoder_url');
1817
-			if (
1818
-				function_exists($f = "urls_{$url_type}_{$fquoi}")
1819
-				or function_exists($f .= '_dist')
1820
-			) {
1821
-				return $f;
1822
-			}
1823
-			// est-ce qu'on a une ancienne fonction urls_xxx_dist() ?
1824
-			// c'est un ancien module d'url, on appelle l'ancienne fonction qui fait tout
1825
-			if ($f = charger_fonction($url_type, 'urls', true)) {
1826
-				return $f;
1827
-			}
1828
-			// sinon on se rabat sur les urls page si ce n'est pas un type demande explicitement
1829
-			if (!$type and $url_type !== 'page'){
1830
-				return charger_fonction_url($quoi, 'page');
1831
-			}
1832
-			return '';
1833
-	}
1779
+    if ($type === 'defaut') {
1780
+        $objet = objet_type($quoi);
1781
+        if (
1782
+            $f = charger_fonction('generer_' . $objet . '_url', 'urls', true)
1783
+            // deprecated
1784
+            or $f = charger_fonction('generer_url_' . $objet, 'urls', true)
1785
+        ) {
1786
+            return $f;
1787
+        }
1788
+        return '';
1789
+    }
1790
+
1791
+    $url_type = $type;
1792
+    if (!$url_type) {
1793
+        $url_type = $GLOBALS['type_urls'] ?? $GLOBALS['meta']['type_urls'] ?? 'page'; // sinon type "page" par défaut
1794
+    }
1795
+
1796
+    // inclure le module d'url
1797
+    include_spip('urls/' . $url_type);
1798
+
1799
+    switch ($quoi) {
1800
+        case 'page':
1801
+            if (
1802
+                    function_exists($f = "urls_{$url_type}_generer_url_page")
1803
+                or function_exists($f .= '_dist')
1804
+                // ou une fonction custom utilisateur independante du type d'url
1805
+                or function_exists($f = 'generer_url_page')
1806
+                or function_exists($f .= '_dist')
1807
+            ) {
1808
+                return $f;
1809
+            }
1810
+            // pas de compat ancienne version ici, c'est une nouvelle feature
1811
+            return '';
1812
+        case 'objet':
1813
+        case 'decoder':
1814
+        default:
1815
+            $fquoi = ($quoi === 'objet' ? 'generer_url_objet' : 'decoder_url');
1816
+            if (
1817
+                function_exists($f = "urls_{$url_type}_{$fquoi}")
1818
+                or function_exists($f .= '_dist')
1819
+            ) {
1820
+                return $f;
1821
+            }
1822
+            // est-ce qu'on a une ancienne fonction urls_xxx_dist() ?
1823
+            // c'est un ancien module d'url, on appelle l'ancienne fonction qui fait tout
1824
+            if ($f = charger_fonction($url_type, 'urls', true)) {
1825
+                return $f;
1826
+            }
1827
+            // sinon on se rabat sur les urls page si ce n'est pas un type demande explicitement
1828
+            if (!$type and $url_type !== 'page'){
1829
+                return charger_fonction_url($quoi, 'page');
1830
+            }
1831
+            return '';
1832
+    }
1834 1833
 }
1835 1834
 
1836 1835
 
@@ -1859,48 +1858,48 @@  discard block
 block discarded – undo
1859 1858
  *           (cas des raccourcis personalises [->spip20] : il faut implementer une fonction generer_spip_url et une fonction generer_spip_url_ecrire)
1860 1859
  */
1861 1860
 function generer_objet_url($id, string $entite, string $args = '', string $ancre = '', ?bool $public = null, string $type = '', string $connect = ''): string {
1862
-	if ($public === null) {
1863
-		$public = !test_espace_prive();
1864
-	}
1865
-	$id = intval($id);
1866
-	$entite = objet_type($entite); // cas particulier d'appels sur objet/id_objet...
1867
-
1868
-	if (!$public) {
1869
-		if (!$entite) {
1870
-			return '';
1871
-		}
1872
-		if (!function_exists('generer_objet_url_ecrire')) {
1873
-			include_spip('inc/urls');
1874
-		}
1875
-		$res = generer_objet_url_ecrire($id, $entite, $args, $ancre, false, $connect);
1876
-	} else {
1877
-		$f = charger_fonction_url('objet', $type ?? '');
1878
-
1879
-		// @deprecated si $entite='', on veut la fonction de passage URL ==> id
1880
-		// @see charger_fonction_url
1881
-		if (!$entite) {
1882
-			return $f;
1883
-		}
1884
-
1885
-		// mais d'abord il faut tester le cas des urls sur une
1886
-		// base distante
1887
-		if (
1888
-			$connect
1889
-			and $g = charger_fonction('connect', 'urls', true)
1890
-		) {
1891
-			$f = $g;
1892
-		}
1893
-
1894
-		$res = $f(intval($id), $entite, $args ?: '', $ancre ?: '', $connect);
1895
-	}
1896
-	if ($res) {
1897
-		return $res;
1898
-	}
1899
-
1900
-	// On a ete gentil mais la ....
1901
-	spip_log("generer_objet_url: entite $entite ($f) inconnue $type $public $connect", _LOG_ERREUR);
1902
-
1903
-	return '';
1861
+    if ($public === null) {
1862
+        $public = !test_espace_prive();
1863
+    }
1864
+    $id = intval($id);
1865
+    $entite = objet_type($entite); // cas particulier d'appels sur objet/id_objet...
1866
+
1867
+    if (!$public) {
1868
+        if (!$entite) {
1869
+            return '';
1870
+        }
1871
+        if (!function_exists('generer_objet_url_ecrire')) {
1872
+            include_spip('inc/urls');
1873
+        }
1874
+        $res = generer_objet_url_ecrire($id, $entite, $args, $ancre, false, $connect);
1875
+    } else {
1876
+        $f = charger_fonction_url('objet', $type ?? '');
1877
+
1878
+        // @deprecated si $entite='', on veut la fonction de passage URL ==> id
1879
+        // @see charger_fonction_url
1880
+        if (!$entite) {
1881
+            return $f;
1882
+        }
1883
+
1884
+        // mais d'abord il faut tester le cas des urls sur une
1885
+        // base distante
1886
+        if (
1887
+            $connect
1888
+            and $g = charger_fonction('connect', 'urls', true)
1889
+        ) {
1890
+            $f = $g;
1891
+        }
1892
+
1893
+        $res = $f(intval($id), $entite, $args ?: '', $ancre ?: '', $connect);
1894
+    }
1895
+    if ($res) {
1896
+        return $res;
1897
+    }
1898
+
1899
+    // On a ete gentil mais la ....
1900
+    spip_log("generer_objet_url: entite $entite ($f) inconnue $type $public $connect", _LOG_ERREUR);
1901
+
1902
+    return '';
1904 1903
 }
1905 1904
 
1906 1905
 /**
@@ -1908,10 +1907,10 @@  discard block
 block discarded – undo
1908 1907
  * @see generer_objet_url
1909 1908
  */
1910 1909
 function generer_url_entite($id = 0, $entite = '', $args = '', $ancre = '', $public = null, $type = null) {
1911
-	if ($public and is_string($public)) {
1912
-		return generer_objet_url(intval($id), $entite, $args ?: '', $ancre ?: '', true, $type ?? '', $public);
1913
-	}
1914
-	return generer_objet_url(intval($id), $entite, $args ?: '', $ancre ?: '', $public, $type ?? '');
1910
+    if ($public and is_string($public)) {
1911
+        return generer_objet_url(intval($id), $entite, $args ?: '', $ancre ?: '', true, $type ?? '', $public);
1912
+    }
1913
+    return generer_objet_url(intval($id), $entite, $args ?: '', $ancre ?: '', $public, $type ?? '');
1915 1914
 }
1916 1915
 
1917 1916
 /**
@@ -1923,19 +1922,19 @@  discard block
 block discarded – undo
1923 1922
  * @return string
1924 1923
  */
1925 1924
 function generer_objet_url_ecrire_edit($id, string $entite, string $args = '', string $ancre = ''): string {
1926
-	$id = intval($id);
1927
-	$exec = objet_info($entite, 'url_edit');
1928
-	$url = generer_url_ecrire($exec, $args);
1929
-	if (intval($id)) {
1930
-		$url = parametre_url($url, id_table_objet($entite), $id);
1931
-	} else {
1932
-		$url = parametre_url($url, 'new', 'oui');
1933
-	}
1934
-	if ($ancre) {
1935
-		$url = ancre_url($url, $ancre);
1936
-	}
1925
+    $id = intval($id);
1926
+    $exec = objet_info($entite, 'url_edit');
1927
+    $url = generer_url_ecrire($exec, $args);
1928
+    if (intval($id)) {
1929
+        $url = parametre_url($url, id_table_objet($entite), $id);
1930
+    } else {
1931
+        $url = parametre_url($url, 'new', 'oui');
1932
+    }
1933
+    if ($ancre) {
1934
+        $url = ancre_url($url, $ancre);
1935
+    }
1937 1936
 
1938
-	return $url;
1937
+    return $url;
1939 1938
 }
1940 1939
 
1941 1940
 /**
@@ -1943,18 +1942,18 @@  discard block
 block discarded – undo
1943 1942
  * @see generer_objet_url_ecrire_edit
1944 1943
  */
1945 1944
 function generer_url_ecrire_entite_edit($id, $entite, $args = '', $ancre = '') {
1946
-	return generer_objet_url_ecrire_edit(intval($id), $entite, $args, $ancre);
1945
+    return generer_objet_url_ecrire_edit(intval($id), $entite, $args, $ancre);
1947 1946
 }
1948 1947
 
1949 1948
 
1950 1949
 function urls_connect_dist($i, &$entite, $args = '', $ancre = '', $public = null) {
1951
-	include_spip('base/connect_sql');
1952
-	$id_type = id_table_objet($entite, $public);
1950
+    include_spip('base/connect_sql');
1951
+    $id_type = id_table_objet($entite, $public);
1953 1952
 
1954
-	return _DIR_RACINE . get_spip_script('./')
1955
-	. '?' . _SPIP_PAGE . "=$entite&$id_type=$i&connect=$public"
1956
-	. (!$args ? '' : "&$args")
1957
-	. (!$ancre ? '' : "#$ancre");
1953
+    return _DIR_RACINE . get_spip_script('./')
1954
+    . '?' . _SPIP_PAGE . "=$entite&$id_type=$i&connect=$public"
1955
+    . (!$args ? '' : "&$args")
1956
+    . (!$ancre ? '' : "#$ancre");
1958 1957
 }
1959 1958
 
1960 1959
 
@@ -1965,18 +1964,18 @@  discard block
 block discarded – undo
1965 1964
  * @return string
1966 1965
  */
1967 1966
 function urlencode_1738($url) {
1968
-	if (preg_match(',[^\x00-\x7E],sS', $url)) {
1969
-		$uri = '';
1970
-		for ($i = 0; $i < strlen($url); $i++) {
1971
-			if (ord($a = $url[$i]) > 127) {
1972
-				$a = rawurlencode($a);
1973
-			}
1974
-			$uri .= $a;
1975
-		}
1976
-		$url = $uri;
1977
-	}
1967
+    if (preg_match(',[^\x00-\x7E],sS', $url)) {
1968
+        $uri = '';
1969
+        for ($i = 0; $i < strlen($url); $i++) {
1970
+            if (ord($a = $url[$i]) > 127) {
1971
+                $a = rawurlencode($a);
1972
+            }
1973
+            $uri .= $a;
1974
+        }
1975
+        $url = $uri;
1976
+    }
1978 1977
 
1979
-	return quote_amp($url);
1978
+    return quote_amp($url);
1980 1979
 }
1981 1980
 
1982 1981
 /**
@@ -1992,14 +1991,14 @@  discard block
 block discarded – undo
1992 1991
  * @return string
1993 1992
  */
1994 1993
 function generer_objet_url_absolue($id = 0, string $entite = '', string $args = '', string $ancre = '', ?bool $public = null, string $type = '', string $connect = ''): string {
1995
-	$id = intval($id);
1996
-	$h = generer_objet_url($id, $entite, $args, $ancre, $public, $type, $connect);
1997
-	if (!preg_match(',^\w+:,', $h)) {
1998
-		include_spip('inc/filtres_mini');
1999
-		$h = url_absolue($h);
2000
-	}
1994
+    $id = intval($id);
1995
+    $h = generer_objet_url($id, $entite, $args, $ancre, $public, $type, $connect);
1996
+    if (!preg_match(',^\w+:,', $h)) {
1997
+        include_spip('inc/filtres_mini');
1998
+        $h = url_absolue($h);
1999
+    }
2001 2000
 
2002
-	return $h;
2001
+    return $h;
2003 2002
 }
2004 2003
 
2005 2004
 /**
@@ -2007,7 +2006,7 @@  discard block
 block discarded – undo
2007 2006
  * @see  generer_objet_url_absolue
2008 2007
  */
2009 2008
 function generer_url_entite_absolue($id = 0, $entite = '', $args = '', $ancre = '', $connect = null) {
2010
-	return generer_objet_url_absolue(intval($id), $entite, $args, $ancre, true, '', $connect);
2009
+    return generer_objet_url_absolue(intval($id), $entite, $args, $ancre, true, '', $connect);
2011 2010
 }
2012 2011
 
2013 2012
 
@@ -2023,11 +2022,11 @@  discard block
 block discarded – undo
2023 2022
  *     true si la valeur est considérée active ; false sinon.
2024 2023
  **/
2025 2024
 function test_valeur_serveur($truc) {
2026
-	if (!$truc) {
2027
-		return false;
2028
-	}
2025
+    if (!$truc) {
2026
+        return false;
2027
+    }
2029 2028
 
2030
-	return (strtolower($truc) !== 'off');
2029
+    return (strtolower($truc) !== 'off');
2031 2030
 }
2032 2031
 
2033 2032
 //
@@ -2055,82 +2054,82 @@  discard block
 block discarded – undo
2055 2054
  */
2056 2055
 function url_de_base($profondeur = null) {
2057 2056
 
2058
-	static $url = [];
2059
-	if (is_array($profondeur)) {
2060
-		return $url = $profondeur;
2061
-	}
2062
-	if ($profondeur === false) {
2063
-		return $url;
2064
-	}
2065
-
2066
-	if (is_null($profondeur)) {
2067
-		$profondeur = $GLOBALS['profondeur_url'] ?? (_DIR_RESTREINT ? 0 : 1);
2068
-	}
2069
-
2070
-	if (isset($url[$profondeur])) {
2071
-		return $url[$profondeur];
2072
-	}
2073
-
2074
-	$http = 'http';
2075
-
2076
-	if (
2077
-		isset($_SERVER['SCRIPT_URI'])
2078
-		and substr($_SERVER['SCRIPT_URI'], 0, 5) == 'https'
2079
-	) {
2080
-		$http = 'https';
2081
-	} elseif (
2082
-		isset($_SERVER['HTTPS'])
2083
-		and test_valeur_serveur($_SERVER['HTTPS'])
2084
-	) {
2085
-		$http = 'https';
2086
-	}
2087
-
2088
-	// note : HTTP_HOST contient le :port si necessaire
2089
-	$host = $_SERVER['HTTP_HOST'] ?? null;
2090
-	// si on n'a pas trouvé d'hôte du tout, en dernier recours on utilise adresse_site comme fallback
2091
-	if (is_null($host) and isset($GLOBALS['meta']['adresse_site'])) {
2092
-		$host = $GLOBALS['meta']['adresse_site'];
2093
-		if ($scheme = parse_url($host, PHP_URL_SCHEME)) {
2094
-			$http = $scheme;
2095
-			$host = str_replace("{$scheme}://", '', $host);
2096
-		}
2097
-	}
2098
-	if (
2099
-		isset($_SERVER['SERVER_PORT'])
2100
-		and $port = $_SERVER['SERVER_PORT']
2101
-		and strpos($host, ':') == false
2102
-	) {
2103
-		if (!defined('_PORT_HTTP_STANDARD')) {
2104
-			define('_PORT_HTTP_STANDARD', '80');
2105
-		}
2106
-		if (!defined('_PORT_HTTPS_STANDARD')) {
2107
-			define('_PORT_HTTPS_STANDARD', '443');
2108
-		}
2109
-		if ($http == 'http' and !in_array($port, explode(',', _PORT_HTTP_STANDARD))) {
2110
-			$host .= ":$port";
2111
-		}
2112
-		if ($http == 'https' and !in_array($port, explode(',', _PORT_HTTPS_STANDARD))) {
2113
-			$host .= ":$port";
2114
-		}
2115
-	}
2116
-
2117
-	if (!$GLOBALS['REQUEST_URI']) {
2118
-		if (isset($_SERVER['REQUEST_URI'])) {
2119
-			$GLOBALS['REQUEST_URI'] = $_SERVER['REQUEST_URI'];
2120
-		} else {
2121
-			$GLOBALS['REQUEST_URI'] = (php_sapi_name() !== 'cli') ? $_SERVER['PHP_SELF'] : '';
2122
-			if (
2123
-				!empty($_SERVER['QUERY_STRING'])
2124
-				and !strpos($_SERVER['REQUEST_URI'], '?')
2125
-			) {
2126
-				$GLOBALS['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING'];
2127
-			}
2128
-		}
2129
-	}
2130
-
2131
-	$url[$profondeur] = url_de_($http, $host, $GLOBALS['REQUEST_URI'], $profondeur);
2132
-
2133
-	return $url[$profondeur];
2057
+    static $url = [];
2058
+    if (is_array($profondeur)) {
2059
+        return $url = $profondeur;
2060
+    }
2061
+    if ($profondeur === false) {
2062
+        return $url;
2063
+    }
2064
+
2065
+    if (is_null($profondeur)) {
2066
+        $profondeur = $GLOBALS['profondeur_url'] ?? (_DIR_RESTREINT ? 0 : 1);
2067
+    }
2068
+
2069
+    if (isset($url[$profondeur])) {
2070
+        return $url[$profondeur];
2071
+    }
2072
+
2073
+    $http = 'http';
2074
+
2075
+    if (
2076
+        isset($_SERVER['SCRIPT_URI'])
2077
+        and substr($_SERVER['SCRIPT_URI'], 0, 5) == 'https'
2078
+    ) {
2079
+        $http = 'https';
2080
+    } elseif (
2081
+        isset($_SERVER['HTTPS'])
2082
+        and test_valeur_serveur($_SERVER['HTTPS'])
2083
+    ) {
2084
+        $http = 'https';
2085
+    }
2086
+
2087
+    // note : HTTP_HOST contient le :port si necessaire
2088
+    $host = $_SERVER['HTTP_HOST'] ?? null;
2089
+    // si on n'a pas trouvé d'hôte du tout, en dernier recours on utilise adresse_site comme fallback
2090
+    if (is_null($host) and isset($GLOBALS['meta']['adresse_site'])) {
2091
+        $host = $GLOBALS['meta']['adresse_site'];
2092
+        if ($scheme = parse_url($host, PHP_URL_SCHEME)) {
2093
+            $http = $scheme;
2094
+            $host = str_replace("{$scheme}://", '', $host);
2095
+        }
2096
+    }
2097
+    if (
2098
+        isset($_SERVER['SERVER_PORT'])
2099
+        and $port = $_SERVER['SERVER_PORT']
2100
+        and strpos($host, ':') == false
2101
+    ) {
2102
+        if (!defined('_PORT_HTTP_STANDARD')) {
2103
+            define('_PORT_HTTP_STANDARD', '80');
2104
+        }
2105
+        if (!defined('_PORT_HTTPS_STANDARD')) {
2106
+            define('_PORT_HTTPS_STANDARD', '443');
2107
+        }
2108
+        if ($http == 'http' and !in_array($port, explode(',', _PORT_HTTP_STANDARD))) {
2109
+            $host .= ":$port";
2110
+        }
2111
+        if ($http == 'https' and !in_array($port, explode(',', _PORT_HTTPS_STANDARD))) {
2112
+            $host .= ":$port";
2113
+        }
2114
+    }
2115
+
2116
+    if (!$GLOBALS['REQUEST_URI']) {
2117
+        if (isset($_SERVER['REQUEST_URI'])) {
2118
+            $GLOBALS['REQUEST_URI'] = $_SERVER['REQUEST_URI'];
2119
+        } else {
2120
+            $GLOBALS['REQUEST_URI'] = (php_sapi_name() !== 'cli') ? $_SERVER['PHP_SELF'] : '';
2121
+            if (
2122
+                !empty($_SERVER['QUERY_STRING'])
2123
+                and !strpos($_SERVER['REQUEST_URI'], '?')
2124
+            ) {
2125
+                $GLOBALS['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING'];
2126
+            }
2127
+        }
2128
+    }
2129
+
2130
+    $url[$profondeur] = url_de_($http, $host, $GLOBALS['REQUEST_URI'], $profondeur);
2131
+
2132
+    return $url[$profondeur];
2134 2133
 }
2135 2134
 
2136 2135
 /**
@@ -2143,26 +2142,26 @@  discard block
 block discarded – undo
2143 2142
  * @return string
2144 2143
  */
2145 2144
 function url_de_($http, $host, $request, $prof = 0) {
2146
-	$prof = max($prof, 0);
2145
+    $prof = max($prof, 0);
2147 2146
 
2148
-	$myself = ltrim($request, '/');
2149
-	# supprimer la chaine de GET
2150
-	[$myself] = explode('?', $myself);
2151
-	// vieux mode HTTP qui envoie après le nom de la methode l'URL compléte
2152
-	// protocole, "://", nom du serveur avant le path dans _SERVER["REQUEST_URI"]
2153
-	if (strpos($myself, '://') !== false) {
2154
-		$myself = explode('://', $myself);
2155
-		array_shift($myself);
2156
-		$myself = implode('://', $myself);
2157
-		$myself = explode('/', $myself);
2158
-		array_shift($myself);
2159
-		$myself = implode('/', $myself);
2160
-	}
2161
-	$url = join('/', array_slice(explode('/', $myself), 0, -1 - $prof)) . '/';
2147
+    $myself = ltrim($request, '/');
2148
+    # supprimer la chaine de GET
2149
+    [$myself] = explode('?', $myself);
2150
+    // vieux mode HTTP qui envoie après le nom de la methode l'URL compléte
2151
+    // protocole, "://", nom du serveur avant le path dans _SERVER["REQUEST_URI"]
2152
+    if (strpos($myself, '://') !== false) {
2153
+        $myself = explode('://', $myself);
2154
+        array_shift($myself);
2155
+        $myself = implode('://', $myself);
2156
+        $myself = explode('/', $myself);
2157
+        array_shift($myself);
2158
+        $myself = implode('/', $myself);
2159
+    }
2160
+    $url = join('/', array_slice(explode('/', $myself), 0, -1 - $prof)) . '/';
2162 2161
 
2163
-	$url = $http . '://' . rtrim($host, '/') . '/' . ltrim($url, '/');
2162
+    $url = $http . '://' . rtrim($host, '/') . '/' . ltrim($url, '/');
2164 2163
 
2165
-	return $url;
2164
+    return $url;
2166 2165
 }
2167 2166
 
2168 2167
 
@@ -2197,25 +2196,25 @@  discard block
 block discarded – undo
2197 2196
  * @return string URL
2198 2197
  **/
2199 2198
 function generer_url_ecrire($script = '', $args = '', $no_entities = false, $rel = false) {
2200
-	if (!$rel) {
2201
-		$rel = url_de_base() . _DIR_RESTREINT_ABS . _SPIP_ECRIRE_SCRIPT;
2202
-	} else {
2203
-		if (!is_string($rel)) {
2204
-			$rel = _DIR_RESTREINT ?: './' . _SPIP_ECRIRE_SCRIPT;
2205
-		}
2206
-	}
2207
-
2208
-	[$script, $ancre] = array_pad(explode('#', $script), 2, null);
2209
-	if ($script and ($script <> 'accueil' or $rel)) {
2210
-		$args = "?exec=$script" . (!$args ? '' : "&$args");
2211
-	} elseif ($args) {
2212
-		$args = "?$args";
2213
-	}
2214
-	if ($ancre) {
2215
-		$args .= "#$ancre";
2216
-	}
2217
-
2218
-	return $rel . ($no_entities ? $args : str_replace('&', '&amp;', $args));
2199
+    if (!$rel) {
2200
+        $rel = url_de_base() . _DIR_RESTREINT_ABS . _SPIP_ECRIRE_SCRIPT;
2201
+    } else {
2202
+        if (!is_string($rel)) {
2203
+            $rel = _DIR_RESTREINT ?: './' . _SPIP_ECRIRE_SCRIPT;
2204
+        }
2205
+    }
2206
+
2207
+    [$script, $ancre] = array_pad(explode('#', $script), 2, null);
2208
+    if ($script and ($script <> 'accueil' or $rel)) {
2209
+        $args = "?exec=$script" . (!$args ? '' : "&$args");
2210
+    } elseif ($args) {
2211
+        $args = "?$args";
2212
+    }
2213
+    if ($ancre) {
2214
+        $args .= "#$ancre";
2215
+    }
2216
+
2217
+    return $rel . ($no_entities ? $args : str_replace('&', '&amp;', $args));
2219 2218
 }
2220 2219
 
2221 2220
 //
@@ -2237,15 +2236,15 @@  discard block
 block discarded – undo
2237 2236
  *     Nom du fichier (constante _SPIP_SCRIPT), sinon nom par défaut
2238 2237
  **/
2239 2238
 function get_spip_script($default = '') {
2240
-	if (!defined('_SPIP_SCRIPT')) {
2241
-		return 'spip.php';
2242
-	}
2243
-	# cas define('_SPIP_SCRIPT', '');
2244
-	if (_SPIP_SCRIPT) {
2245
-		return _SPIP_SCRIPT;
2246
-	} else {
2247
-		return $default;
2248
-	}
2239
+    if (!defined('_SPIP_SCRIPT')) {
2240
+        return 'spip.php';
2241
+    }
2242
+    # cas define('_SPIP_SCRIPT', '');
2243
+    if (_SPIP_SCRIPT) {
2244
+        return _SPIP_SCRIPT;
2245
+    } else {
2246
+        return $default;
2247
+    }
2249 2248
 }
2250 2249
 
2251 2250
 /**
@@ -2274,45 +2273,45 @@  discard block
 block discarded – undo
2274 2273
  * @return string URL
2275 2274
  **/
2276 2275
 function generer_url_public($script = '', $args = '', $no_entities = false, $rel = true, $action = '') {
2277
-	// si le script est une action (spip_pass, spip_inscription),
2278
-	// standardiser vers la nouvelle API
2279
-
2280
-	if (is_array($args)) {
2281
-		$args = http_build_query($args);
2282
-	}
2283
-
2284
-	$url = '';
2285
-	if ($f = charger_fonction_url('page')) {
2286
-		$url = $f($script, $args);
2287
-		if ($url and !$rel) {
2288
-			include_spip('inc/filtres_mini');
2289
-			$url = url_absolue($url);
2290
-		}
2291
-	}
2292
-	if (!$url) {
2293
-		if (!$action) {
2294
-			$action = get_spip_script();
2295
-		}
2296
-		if ($script) {
2297
-			$action = parametre_url($action, _SPIP_PAGE, $script, '&');
2298
-		}
2299
-		if ($args) {
2300
-			$action .= (strpos($action, '?') !== false ? '&' : '?') . $args;
2301
-		}
2302
-		// ne pas generer une url avec /./?page= en cas d'url absolue et de _SPIP_SCRIPT vide
2303
-		$url = ($rel ? _DIR_RACINE . $action : rtrim(url_de_base(), '/') . preg_replace(',^/[.]/,', '/', "/$action"));
2304
-	}
2305
-
2306
-	if (!$no_entities) {
2307
-		$url = quote_amp($url);
2308
-	}
2309
-
2310
-	return $url;
2276
+    // si le script est une action (spip_pass, spip_inscription),
2277
+    // standardiser vers la nouvelle API
2278
+
2279
+    if (is_array($args)) {
2280
+        $args = http_build_query($args);
2281
+    }
2282
+
2283
+    $url = '';
2284
+    if ($f = charger_fonction_url('page')) {
2285
+        $url = $f($script, $args);
2286
+        if ($url and !$rel) {
2287
+            include_spip('inc/filtres_mini');
2288
+            $url = url_absolue($url);
2289
+        }
2290
+    }
2291
+    if (!$url) {
2292
+        if (!$action) {
2293
+            $action = get_spip_script();
2294
+        }
2295
+        if ($script) {
2296
+            $action = parametre_url($action, _SPIP_PAGE, $script, '&');
2297
+        }
2298
+        if ($args) {
2299
+            $action .= (strpos($action, '?') !== false ? '&' : '?') . $args;
2300
+        }
2301
+        // ne pas generer une url avec /./?page= en cas d'url absolue et de _SPIP_SCRIPT vide
2302
+        $url = ($rel ? _DIR_RACINE . $action : rtrim(url_de_base(), '/') . preg_replace(',^/[.]/,', '/', "/$action"));
2303
+    }
2304
+
2305
+    if (!$no_entities) {
2306
+        $url = quote_amp($url);
2307
+    }
2308
+
2309
+    return $url;
2311 2310
 }
2312 2311
 
2313 2312
 function generer_url_prive($script, $args = '', $no_entities = false) {
2314 2313
 
2315
-	return generer_url_public($script, $args, $no_entities, false, _DIR_RESTREINT_ABS . 'prive.php');
2314
+    return generer_url_public($script, $args, $no_entities, false, _DIR_RESTREINT_ABS . 'prive.php');
2316 2315
 }
2317 2316
 
2318 2317
 // Pour les formulaires en methode POST,
@@ -2337,19 +2336,19 @@  discard block
 block discarded – undo
2337 2336
  **/
2338 2337
 function generer_form_ecrire($script, $corps, $atts = '', $submit = '') {
2339 2338
 
2340
-	$script1 = explode('&', $script);
2341
-	$script1 = reset($script1);
2339
+    $script1 = explode('&', $script);
2340
+    $script1 = reset($script1);
2342 2341
 
2343
-	return "<form action='"
2344
-	. ($script ? generer_url_ecrire($script) : '')
2345
-	. "' "
2346
-	. ($atts ?: " method='post'")
2347
-	. "><div>\n"
2348
-	. "<input type='hidden' name='exec' value='$script1' />"
2349
-	. $corps
2350
-	. (!$submit ? '' :
2351
-		("<div style='text-align: " . $GLOBALS['spip_lang_right'] . "'><input class='fondo submit btn' type='submit' value=\"" . entites_html($submit) . '" /></div>'))
2352
-	. "</div></form>\n";
2342
+    return "<form action='"
2343
+    . ($script ? generer_url_ecrire($script) : '')
2344
+    . "' "
2345
+    . ($atts ?: " method='post'")
2346
+    . "><div>\n"
2347
+    . "<input type='hidden' name='exec' value='$script1' />"
2348
+    . $corps
2349
+    . (!$submit ? '' :
2350
+        ("<div style='text-align: " . $GLOBALS['spip_lang_right'] . "'><input class='fondo submit btn' type='submit' value=\"" . entites_html($submit) . '" /></div>'))
2351
+    . "</div></form>\n";
2353 2352
 }
2354 2353
 
2355 2354
 /**
@@ -2366,22 +2365,22 @@  discard block
 block discarded – undo
2366 2365
  * @return string
2367 2366
  */
2368 2367
 function generer_form_action($script, $corps, $atts = '', $public = false) {
2369
-	// si l'on est dans l'espace prive, on garde dans l'url
2370
-	// l'exec a l'origine de l'action, qui permet de savoir si il est necessaire
2371
-	// ou non de proceder a l'authentification (cas typique de l'install par exemple)
2372
-	$h = (_DIR_RACINE and !$public)
2373
-		? generer_url_ecrire(_request('exec'))
2374
-		: generer_url_public();
2368
+    // si l'on est dans l'espace prive, on garde dans l'url
2369
+    // l'exec a l'origine de l'action, qui permet de savoir si il est necessaire
2370
+    // ou non de proceder a l'authentification (cas typique de l'install par exemple)
2371
+    $h = (_DIR_RACINE and !$public)
2372
+        ? generer_url_ecrire(_request('exec'))
2373
+        : generer_url_public();
2375 2374
 
2376
-	return "\n<form action='" .
2377
-	$h .
2378
-	"'" .
2379
-	$atts .
2380
-	">\n" .
2381
-	'<div>' .
2382
-	"\n<input type='hidden' name='action' value='$script' />" .
2383
-	$corps .
2384
-	'</div></form>';
2375
+    return "\n<form action='" .
2376
+    $h .
2377
+    "'" .
2378
+    $atts .
2379
+    ">\n" .
2380
+    '<div>' .
2381
+    "\n<input type='hidden' name='action' value='$script' />" .
2382
+    $corps .
2383
+    '</div></form>';
2385 2384
 }
2386 2385
 
2387 2386
 /**
@@ -2400,22 +2399,22 @@  discard block
 block discarded – undo
2400 2399
  *     URL
2401 2400
  */
2402 2401
 function generer_url_action($script, $args = '', $no_entities = false, $public = false) {
2403
-	// si l'on est dans l'espace prive, on garde dans l'url
2404
-	// l'exec a l'origine de l'action, qui permet de savoir si il est necessaire
2405
-	// ou non de proceder a l'authentification (cas typique de l'install par exemple)
2406
-	$url = (_DIR_RACINE and !$public)
2407
-		? generer_url_ecrire(_request('exec'))
2408
-		: generer_url_public('', '', false, false);
2409
-	$url = parametre_url($url, 'action', $script);
2410
-	if ($args) {
2411
-		$url .= quote_amp('&' . $args);
2412
-	}
2402
+    // si l'on est dans l'espace prive, on garde dans l'url
2403
+    // l'exec a l'origine de l'action, qui permet de savoir si il est necessaire
2404
+    // ou non de proceder a l'authentification (cas typique de l'install par exemple)
2405
+    $url = (_DIR_RACINE and !$public)
2406
+        ? generer_url_ecrire(_request('exec'))
2407
+        : generer_url_public('', '', false, false);
2408
+    $url = parametre_url($url, 'action', $script);
2409
+    if ($args) {
2410
+        $url .= quote_amp('&' . $args);
2411
+    }
2413 2412
 
2414
-	if ($no_entities) {
2415
-		$url = str_replace('&amp;', '&', $url);
2416
-	}
2413
+    if ($no_entities) {
2414
+        $url = str_replace('&amp;', '&', $url);
2415
+    }
2417 2416
 
2418
-	return $url;
2417
+    return $url;
2419 2418
 }
2420 2419
 
2421 2420
 
@@ -2434,23 +2433,23 @@  discard block
 block discarded – undo
2434 2433
  *     URL
2435 2434
  */
2436 2435
 function generer_url_api(string $script, string $path, string $args, bool $no_entities = false, ?bool $public = null) {
2437
-	if (is_null($public)) {
2438
-		$public = (_DIR_RACINE ? false : '');
2439
-	}
2440
-	if (substr($script, -4) !== '.api') {
2441
-		$script .= '.api';
2442
-	}
2443
-	$url =
2444
-		(($public ? _DIR_RACINE : _DIR_RESTREINT) ?: './')
2445
-	. $script . '/'
2446
-	. ($path ? trim($path, '/') : '')
2447
-	. ($args ? '?' . quote_amp($args) : '');
2436
+    if (is_null($public)) {
2437
+        $public = (_DIR_RACINE ? false : '');
2438
+    }
2439
+    if (substr($script, -4) !== '.api') {
2440
+        $script .= '.api';
2441
+    }
2442
+    $url =
2443
+        (($public ? _DIR_RACINE : _DIR_RESTREINT) ?: './')
2444
+    . $script . '/'
2445
+    . ($path ? trim($path, '/') : '')
2446
+    . ($args ? '?' . quote_amp($args) : '');
2448 2447
 
2449
-	if ($no_entities) {
2450
-		$url = str_replace('&amp;', '&', $url);
2451
-	}
2448
+    if ($no_entities) {
2449
+        $url = str_replace('&amp;', '&', $url);
2450
+    }
2452 2451
 
2453
-	return $url;
2452
+    return $url;
2454 2453
 }
2455 2454
 
2456 2455
 
@@ -2463,8 +2462,8 @@  discard block
 block discarded – undo
2463 2462
  * @param string $ta Répertoire temporaire accessible
2464 2463
  */
2465 2464
 function spip_initialisation($pi = null, $pa = null, $ti = null, $ta = null) {
2466
-	spip_initialisation_core($pi, $pa, $ti, $ta);
2467
-	spip_initialisation_suite();
2465
+    spip_initialisation_core($pi, $pa, $ti, $ta);
2466
+    spip_initialisation_suite();
2468 2467
 }
2469 2468
 
2470 2469
 /**
@@ -2484,322 +2483,322 @@  discard block
 block discarded – undo
2484 2483
  * @param string $ta Répertoire temporaire accessible
2485 2484
  */
2486 2485
 function spip_initialisation_core($pi = null, $pa = null, $ti = null, $ta = null) {
2487
-	static $too_late = 0;
2488
-	if ($too_late++) {
2489
-		return;
2490
-	}
2491
-
2492
-	// Declaration des repertoires
2493
-
2494
-	// le nom du repertoire plugins/ activables/desactivables
2495
-	if (!defined('_DIR_PLUGINS')) {
2496
-		define('_DIR_PLUGINS', _DIR_RACINE . 'plugins/');
2497
-	}
2498
-
2499
-	// le nom du repertoire des extensions/ permanentes du core, toujours actives
2500
-	if (!defined('_DIR_PLUGINS_DIST')) {
2501
-		define('_DIR_PLUGINS_DIST', _DIR_RACINE . 'plugins-dist/');
2502
-	}
2503
-
2504
-	// le nom du repertoire des librairies
2505
-	if (!defined('_DIR_LIB')) {
2506
-		define('_DIR_LIB', _DIR_RACINE . 'lib/');
2507
-	}
2508
-
2509
-	if (!defined('_DIR_IMG')) {
2510
-		define('_DIR_IMG', $pa);
2511
-	}
2512
-	if (!defined('_DIR_LOGOS')) {
2513
-		define('_DIR_LOGOS', $pa);
2514
-	}
2515
-	if (!defined('_DIR_IMG_ICONES')) {
2516
-		define('_DIR_IMG_ICONES', _DIR_LOGOS . 'icones/');
2517
-	}
2518
-
2519
-	if (!defined('_DIR_DUMP')) {
2520
-		define('_DIR_DUMP', $ti . 'dump/');
2521
-	}
2522
-	if (!defined('_DIR_SESSIONS')) {
2523
-		define('_DIR_SESSIONS', $ti . 'sessions/');
2524
-	}
2525
-	if (!defined('_DIR_TRANSFERT')) {
2526
-		define('_DIR_TRANSFERT', $ti . 'upload/');
2527
-	}
2528
-	if (!defined('_DIR_CACHE')) {
2529
-		define('_DIR_CACHE', $ti . 'cache/');
2530
-	}
2531
-	if (!defined('_DIR_CACHE_XML')) {
2532
-		define('_DIR_CACHE_XML', _DIR_CACHE . 'xml/');
2533
-	}
2534
-	if (!defined('_DIR_SKELS')) {
2535
-		define('_DIR_SKELS', _DIR_CACHE . 'skel/');
2536
-	}
2537
-	if (!defined('_DIR_AIDE')) {
2538
-		define('_DIR_AIDE', _DIR_CACHE . 'aide/');
2539
-	}
2540
-	if (!defined('_DIR_TMP')) {
2541
-		define('_DIR_TMP', $ti);
2542
-	}
2543
-
2544
-	if (!defined('_DIR_VAR')) {
2545
-		define('_DIR_VAR', $ta);
2546
-	}
2547
-
2548
-	if (!defined('_DIR_ETC')) {
2549
-		define('_DIR_ETC', $pi);
2550
-	}
2551
-	if (!defined('_DIR_CONNECT')) {
2552
-		define('_DIR_CONNECT', $pi);
2553
-	}
2554
-	if (!defined('_DIR_CHMOD')) {
2555
-		define('_DIR_CHMOD', $pi);
2556
-	}
2557
-
2558
-	if (!isset($GLOBALS['test_dirs'])) {
2559
-		// Pas $pi car il est bon de le mettre hors ecriture apres intstall
2560
-		// il sera rajoute automatiquement si besoin a l'etape 2 de l'install
2561
-	$GLOBALS['test_dirs'] = [$pa, $ti, $ta];
2562
-	}
2563
-
2564
-	// Declaration des fichiers
2565
-
2566
-	if (!defined('_CACHE_PLUGINS_PATH')) {
2567
-		define('_CACHE_PLUGINS_PATH', _DIR_CACHE . 'charger_plugins_chemins.php');
2568
-	}
2569
-	if (!defined('_CACHE_PLUGINS_OPT')) {
2570
-		define('_CACHE_PLUGINS_OPT', _DIR_CACHE . 'charger_plugins_options.php');
2571
-	}
2572
-	if (!defined('_CACHE_PLUGINS_FCT')) {
2573
-		define('_CACHE_PLUGINS_FCT', _DIR_CACHE . 'charger_plugins_fonctions.php');
2574
-	}
2575
-	if (!defined('_CACHE_PIPELINES')) {
2576
-		define('_CACHE_PIPELINES', _DIR_CACHE . 'charger_pipelines.php');
2577
-	}
2578
-	if (!defined('_CACHE_CHEMIN')) {
2579
-		define('_CACHE_CHEMIN', _DIR_CACHE . 'chemin.txt');
2580
-	}
2581
-
2582
-	# attention .php obligatoire pour ecrire_fichier_securise
2583
-	if (!defined('_FILE_META')) {
2584
-		define('_FILE_META', $ti . 'meta_cache.php');
2585
-	}
2586
-	if (!defined('_DIR_LOG')) {
2587
-		define('_DIR_LOG', _DIR_TMP . 'log/');
2588
-	}
2589
-	if (!defined('_FILE_LOG')) {
2590
-		define('_FILE_LOG', 'spip');
2591
-	}
2592
-	if (!defined('_FILE_LOG_SUFFIX')) {
2593
-		define('_FILE_LOG_SUFFIX', '.log');
2594
-	}
2595
-
2596
-	// Le fichier de connexion a la base de donnees
2597
-	// tient compte des anciennes versions (inc_connect...)
2598
-	if (!defined('_FILE_CONNECT_INS')) {
2599
-		define('_FILE_CONNECT_INS', 'connect');
2600
-	}
2601
-	if (!defined('_FILE_CONNECT')) {
2602
-		define(
2603
-			'_FILE_CONNECT',
2604
-			(@is_readable($f = _DIR_CONNECT . _FILE_CONNECT_INS . '.php') ? $f
2605
-			: (@is_readable($f = _DIR_RESTREINT . 'inc_connect.php') ? $f
2606
-			: false))
2607
-		);
2608
-	}
2609
-
2610
-	// Le fichier de reglages des droits
2611
-	if (!defined('_FILE_CHMOD_INS')) {
2612
-		define('_FILE_CHMOD_INS', 'chmod');
2613
-	}
2614
-	if (!defined('_FILE_CHMOD')) {
2615
-		define(
2616
-			'_FILE_CHMOD',
2617
-			(@is_readable($f = _DIR_CHMOD . _FILE_CHMOD_INS . '.php') ? $f
2618
-			: false)
2619
-		);
2620
-	}
2621
-
2622
-	if (!defined('_FILE_LDAP')) {
2623
-		define('_FILE_LDAP', 'ldap.php');
2624
-	}
2625
-
2626
-	if (!defined('_FILE_TMP_SUFFIX')) {
2627
-		define('_FILE_TMP_SUFFIX', '.tmp.php');
2628
-	}
2629
-	if (!defined('_FILE_CONNECT_TMP')) {
2630
-		define('_FILE_CONNECT_TMP', _DIR_CONNECT . _FILE_CONNECT_INS . _FILE_TMP_SUFFIX);
2631
-	}
2632
-	if (!defined('_FILE_CHMOD_TMP')) {
2633
-		define('_FILE_CHMOD_TMP', _DIR_CHMOD . _FILE_CHMOD_INS . _FILE_TMP_SUFFIX);
2634
-	}
2635
-
2636
-	// Definition des droits d'acces en ecriture
2637
-	if (!defined('_SPIP_CHMOD') and _FILE_CHMOD) {
2638
-		include_once _FILE_CHMOD;
2639
-	}
2640
-
2641
-	// Se mefier des fichiers mal remplis!
2642
-	if (!defined('_SPIP_CHMOD')) {
2643
-		define('_SPIP_CHMOD', 0777);
2644
-	}
2645
-
2646
-	if (!defined('_DEFAULT_CHARSET')) {
2647
-		/** Le charset par défaut lors de l'installation */
2648
-		define('_DEFAULT_CHARSET', 'utf-8');
2649
-	}
2650
-	if (!defined('_ROOT_PLUGINS')) {
2651
-		define('_ROOT_PLUGINS', _ROOT_RACINE . 'plugins/');
2652
-	}
2653
-	if (!defined('_ROOT_PLUGINS_DIST')) {
2654
-		define('_ROOT_PLUGINS_DIST', _ROOT_RACINE . 'plugins-dist/');
2655
-	}
2656
-	if (!defined('_ROOT_PLUGINS_SUPPL') && defined('_DIR_PLUGINS_SUPPL') && _DIR_PLUGINS_SUPPL) {
2657
-		define('_ROOT_PLUGINS_SUPPL', _ROOT_RACINE . str_replace(_DIR_RACINE, '', _DIR_PLUGINS_SUPPL));
2658
-	}
2659
-
2660
-	// La taille des Log
2661
-	if (!defined('_MAX_LOG')) {
2662
-		define('_MAX_LOG', 100);
2663
-	}
2664
-
2665
-	// Sommes-nous dans l'empire du Mal ?
2666
-	// (ou sous le signe du Pingouin, ascendant GNU ?)
2667
-	if (isset($_SERVER['SERVER_SOFTWARE']) and strpos($_SERVER['SERVER_SOFTWARE'], '(Win') !== false) {
2668
-		if (!defined('_OS_SERVEUR')) {
2669
-			define('_OS_SERVEUR', 'windows');
2670
-		}
2671
-		if (!defined('_SPIP_LOCK_MODE')) {
2672
-			define('_SPIP_LOCK_MODE', 1);
2673
-		} // utiliser le flock php
2674
-	} else {
2675
-		if (!defined('_OS_SERVEUR')) {
2676
-			define('_OS_SERVEUR', '');
2677
-		}
2678
-		if (!defined('_SPIP_LOCK_MODE')) {
2679
-			define('_SPIP_LOCK_MODE', 1);
2680
-		} // utiliser le flock php
2681
-		#if (!defined('_SPIP_LOCK_MODE')) define('_SPIP_LOCK_MODE',2); // utiliser le nfslock de spip mais link() est tres souvent interdite
2682
-	}
2683
-
2684
-	// Langue par defaut
2685
-	if (!defined('_LANGUE_PAR_DEFAUT')) {
2686
-		define('_LANGUE_PAR_DEFAUT', 'fr');
2687
-	}
2688
-
2689
-	//
2690
-	// Module de lecture/ecriture/suppression de fichiers utilisant flock()
2691
-	// (non surchargeable en l'etat ; attention si on utilise include_spip()
2692
-	// pour le rendre surchargeable, on va provoquer un reecriture
2693
-	// systematique du noyau ou une baisse de perfs => a etudier)
2694
-	include_once _ROOT_RESTREINT . 'inc/flock.php';
2695
-
2696
-	// charger tout de suite le path et son cache
2697
-	load_path_cache();
2698
-
2699
-	// *********** traiter les variables ************
2700
-
2701
-	//
2702
-	// Securite
2703
-	//
2704
-
2705
-	// Ne pas se faire manger par un bug php qui accepte ?GLOBALS[truc]=toto
2706
-	if (isset($_REQUEST['GLOBALS'])) {
2707
-		die();
2708
-	}
2709
-	// nettoyer les magic quotes \' et les caracteres nuls %00
2710
-	spip_desinfecte($_GET);
2711
-	spip_desinfecte($_POST);
2712
-	spip_desinfecte($_COOKIE);
2713
-	spip_desinfecte($_REQUEST);
2714
-
2715
-	// appliquer le cookie_prefix
2716
-	if ($GLOBALS['cookie_prefix'] != 'spip') {
2717
-		include_spip('inc/cookie');
2718
-		recuperer_cookies_spip($GLOBALS['cookie_prefix']);
2719
-	}
2720
-
2721
-	//
2722
-	// Capacites php (en fonction de la version)
2723
-	//
2724
-	$GLOBALS['flag_ob'] = (function_exists('ob_start')
2725
-		&& function_exists('ini_get')
2726
-		&& !strstr(@ini_get('disable_functions'), 'ob_'));
2727
-	$GLOBALS['flag_sapi_name'] = function_exists('php_sapi_name');
2728
-	$GLOBALS['flag_get_cfg_var'] = (@get_cfg_var('error_reporting') != '');
2729
-	$GLOBALS['flag_upload'] = (!$GLOBALS['flag_get_cfg_var'] ||
2730
-		(get_cfg_var('upload_max_filesize') > 0));
2731
-
2732
-
2733
-	// Compatibilite avec serveurs ne fournissant pas $REQUEST_URI
2734
-	if (isset($_SERVER['REQUEST_URI'])) {
2735
-		$GLOBALS['REQUEST_URI'] = $_SERVER['REQUEST_URI'];
2736
-	} else {
2737
-		$GLOBALS['REQUEST_URI'] = (php_sapi_name() !== 'cli') ? $_SERVER['PHP_SELF'] : '';
2738
-		if (
2739
-			!empty($_SERVER['QUERY_STRING'])
2740
-			and !strpos($_SERVER['REQUEST_URI'], '?')
2741
-		) {
2742
-			$GLOBALS['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING'];
2743
-		}
2744
-	}
2745
-
2746
-	// Duree de validite de l'alea pour les cookies et ce qui s'ensuit.
2747
-	if (!defined('_RENOUVELLE_ALEA')) {
2748
-		define('_RENOUVELLE_ALEA', 12 * 3600);
2749
-	}
2750
-	if (!defined('_DUREE_COOKIE_ADMIN')) {
2751
-		define('_DUREE_COOKIE_ADMIN', 14 * 24 * 3600);
2752
-	}
2753
-
2754
-	// charger les meta si possible et renouveller l'alea au besoin
2755
-	// charge aussi effacer_meta et ecrire_meta
2756
-	$inc_meta = charger_fonction('meta', 'inc');
2757
-	$inc_meta();
2758
-
2759
-	// nombre de repertoires depuis la racine
2760
-	// on compare a l'adresse de spip.php : $_SERVER["SCRIPT_NAME"]
2761
-	// ou a defaut celle donnee en meta ; (mais si celle-ci est fausse
2762
-	// le calcul est faux)
2763
-	if (!_DIR_RESTREINT) {
2764
-		$GLOBALS['profondeur_url'] = 1;
2765
-	} else {
2766
-		$uri = isset($_SERVER['REQUEST_URI']) ? explode('?', $_SERVER['REQUEST_URI']) : '';
2767
-		$uri_ref = $_SERVER['SCRIPT_NAME'];
2768
-		if (
2769
-			!$uri_ref
2770
-			// si on est appele avec un autre ti, on est sans doute en mutu
2771
-			// si jamais c'est de la mutu avec sous rep, on est perdu si on se fie
2772
-			// a spip.php qui est a la racine du spip, et vue qu'on sait pas se reperer
2773
-			// s'en remettre a l'adresse du site. alea jacta est.
2774
-			or $ti !== _NOM_TEMPORAIRES_INACCESSIBLES
2775
-		) {
2776
-			if (isset($GLOBALS['meta']['adresse_site'])) {
2777
-				$uri_ref = parse_url($GLOBALS['meta']['adresse_site']);
2778
-				$uri_ref = ($uri_ref['path'] ?? '') . '/';
2779
-			} else {
2780
-				$uri_ref = '';
2781
-			}
2782
-		}
2783
-		if (!$uri or !$uri_ref) {
2784
-			$GLOBALS['profondeur_url'] = 0;
2785
-		} else {
2786
-			$GLOBALS['profondeur_url'] = max(
2787
-				0,
2788
-				substr_count($uri[0], '/')
2789
-				- substr_count($uri_ref, '/')
2790
-			);
2791
-		}
2792
-	}
2793
-	// s'il y a un cookie ou PHP_AUTH, initialiser visiteur_session
2794
-	if (_FILE_CONNECT) {
2795
-		if (
2796
-			verifier_visiteur() == '0minirezo'
2797
-			// si c'est un admin sans cookie admin, il faut ignorer le cache chemin !
2798
-			and !isset($_COOKIE['spip_admin'])
2799
-		) {
2800
-			clear_path_cache();
2801
-		}
2802
-	}
2486
+    static $too_late = 0;
2487
+    if ($too_late++) {
2488
+        return;
2489
+    }
2490
+
2491
+    // Declaration des repertoires
2492
+
2493
+    // le nom du repertoire plugins/ activables/desactivables
2494
+    if (!defined('_DIR_PLUGINS')) {
2495
+        define('_DIR_PLUGINS', _DIR_RACINE . 'plugins/');
2496
+    }
2497
+
2498
+    // le nom du repertoire des extensions/ permanentes du core, toujours actives
2499
+    if (!defined('_DIR_PLUGINS_DIST')) {
2500
+        define('_DIR_PLUGINS_DIST', _DIR_RACINE . 'plugins-dist/');
2501
+    }
2502
+
2503
+    // le nom du repertoire des librairies
2504
+    if (!defined('_DIR_LIB')) {
2505
+        define('_DIR_LIB', _DIR_RACINE . 'lib/');
2506
+    }
2507
+
2508
+    if (!defined('_DIR_IMG')) {
2509
+        define('_DIR_IMG', $pa);
2510
+    }
2511
+    if (!defined('_DIR_LOGOS')) {
2512
+        define('_DIR_LOGOS', $pa);
2513
+    }
2514
+    if (!defined('_DIR_IMG_ICONES')) {
2515
+        define('_DIR_IMG_ICONES', _DIR_LOGOS . 'icones/');
2516
+    }
2517
+
2518
+    if (!defined('_DIR_DUMP')) {
2519
+        define('_DIR_DUMP', $ti . 'dump/');
2520
+    }
2521
+    if (!defined('_DIR_SESSIONS')) {
2522
+        define('_DIR_SESSIONS', $ti . 'sessions/');
2523
+    }
2524
+    if (!defined('_DIR_TRANSFERT')) {
2525
+        define('_DIR_TRANSFERT', $ti . 'upload/');
2526
+    }
2527
+    if (!defined('_DIR_CACHE')) {
2528
+        define('_DIR_CACHE', $ti . 'cache/');
2529
+    }
2530
+    if (!defined('_DIR_CACHE_XML')) {
2531
+        define('_DIR_CACHE_XML', _DIR_CACHE . 'xml/');
2532
+    }
2533
+    if (!defined('_DIR_SKELS')) {
2534
+        define('_DIR_SKELS', _DIR_CACHE . 'skel/');
2535
+    }
2536
+    if (!defined('_DIR_AIDE')) {
2537
+        define('_DIR_AIDE', _DIR_CACHE . 'aide/');
2538
+    }
2539
+    if (!defined('_DIR_TMP')) {
2540
+        define('_DIR_TMP', $ti);
2541
+    }
2542
+
2543
+    if (!defined('_DIR_VAR')) {
2544
+        define('_DIR_VAR', $ta);
2545
+    }
2546
+
2547
+    if (!defined('_DIR_ETC')) {
2548
+        define('_DIR_ETC', $pi);
2549
+    }
2550
+    if (!defined('_DIR_CONNECT')) {
2551
+        define('_DIR_CONNECT', $pi);
2552
+    }
2553
+    if (!defined('_DIR_CHMOD')) {
2554
+        define('_DIR_CHMOD', $pi);
2555
+    }
2556
+
2557
+    if (!isset($GLOBALS['test_dirs'])) {
2558
+        // Pas $pi car il est bon de le mettre hors ecriture apres intstall
2559
+        // il sera rajoute automatiquement si besoin a l'etape 2 de l'install
2560
+    $GLOBALS['test_dirs'] = [$pa, $ti, $ta];
2561
+    }
2562
+
2563
+    // Declaration des fichiers
2564
+
2565
+    if (!defined('_CACHE_PLUGINS_PATH')) {
2566
+        define('_CACHE_PLUGINS_PATH', _DIR_CACHE . 'charger_plugins_chemins.php');
2567
+    }
2568
+    if (!defined('_CACHE_PLUGINS_OPT')) {
2569
+        define('_CACHE_PLUGINS_OPT', _DIR_CACHE . 'charger_plugins_options.php');
2570
+    }
2571
+    if (!defined('_CACHE_PLUGINS_FCT')) {
2572
+        define('_CACHE_PLUGINS_FCT', _DIR_CACHE . 'charger_plugins_fonctions.php');
2573
+    }
2574
+    if (!defined('_CACHE_PIPELINES')) {
2575
+        define('_CACHE_PIPELINES', _DIR_CACHE . 'charger_pipelines.php');
2576
+    }
2577
+    if (!defined('_CACHE_CHEMIN')) {
2578
+        define('_CACHE_CHEMIN', _DIR_CACHE . 'chemin.txt');
2579
+    }
2580
+
2581
+    # attention .php obligatoire pour ecrire_fichier_securise
2582
+    if (!defined('_FILE_META')) {
2583
+        define('_FILE_META', $ti . 'meta_cache.php');
2584
+    }
2585
+    if (!defined('_DIR_LOG')) {
2586
+        define('_DIR_LOG', _DIR_TMP . 'log/');
2587
+    }
2588
+    if (!defined('_FILE_LOG')) {
2589
+        define('_FILE_LOG', 'spip');
2590
+    }
2591
+    if (!defined('_FILE_LOG_SUFFIX')) {
2592
+        define('_FILE_LOG_SUFFIX', '.log');
2593
+    }
2594
+
2595
+    // Le fichier de connexion a la base de donnees
2596
+    // tient compte des anciennes versions (inc_connect...)
2597
+    if (!defined('_FILE_CONNECT_INS')) {
2598
+        define('_FILE_CONNECT_INS', 'connect');
2599
+    }
2600
+    if (!defined('_FILE_CONNECT')) {
2601
+        define(
2602
+            '_FILE_CONNECT',
2603
+            (@is_readable($f = _DIR_CONNECT . _FILE_CONNECT_INS . '.php') ? $f
2604
+            : (@is_readable($f = _DIR_RESTREINT . 'inc_connect.php') ? $f
2605
+            : false))
2606
+        );
2607
+    }
2608
+
2609
+    // Le fichier de reglages des droits
2610
+    if (!defined('_FILE_CHMOD_INS')) {
2611
+        define('_FILE_CHMOD_INS', 'chmod');
2612
+    }
2613
+    if (!defined('_FILE_CHMOD')) {
2614
+        define(
2615
+            '_FILE_CHMOD',
2616
+            (@is_readable($f = _DIR_CHMOD . _FILE_CHMOD_INS . '.php') ? $f
2617
+            : false)
2618
+        );
2619
+    }
2620
+
2621
+    if (!defined('_FILE_LDAP')) {
2622
+        define('_FILE_LDAP', 'ldap.php');
2623
+    }
2624
+
2625
+    if (!defined('_FILE_TMP_SUFFIX')) {
2626
+        define('_FILE_TMP_SUFFIX', '.tmp.php');
2627
+    }
2628
+    if (!defined('_FILE_CONNECT_TMP')) {
2629
+        define('_FILE_CONNECT_TMP', _DIR_CONNECT . _FILE_CONNECT_INS . _FILE_TMP_SUFFIX);
2630
+    }
2631
+    if (!defined('_FILE_CHMOD_TMP')) {
2632
+        define('_FILE_CHMOD_TMP', _DIR_CHMOD . _FILE_CHMOD_INS . _FILE_TMP_SUFFIX);
2633
+    }
2634
+
2635
+    // Definition des droits d'acces en ecriture
2636
+    if (!defined('_SPIP_CHMOD') and _FILE_CHMOD) {
2637
+        include_once _FILE_CHMOD;
2638
+    }
2639
+
2640
+    // Se mefier des fichiers mal remplis!
2641
+    if (!defined('_SPIP_CHMOD')) {
2642
+        define('_SPIP_CHMOD', 0777);
2643
+    }
2644
+
2645
+    if (!defined('_DEFAULT_CHARSET')) {
2646
+        /** Le charset par défaut lors de l'installation */
2647
+        define('_DEFAULT_CHARSET', 'utf-8');
2648
+    }
2649
+    if (!defined('_ROOT_PLUGINS')) {
2650
+        define('_ROOT_PLUGINS', _ROOT_RACINE . 'plugins/');
2651
+    }
2652
+    if (!defined('_ROOT_PLUGINS_DIST')) {
2653
+        define('_ROOT_PLUGINS_DIST', _ROOT_RACINE . 'plugins-dist/');
2654
+    }
2655
+    if (!defined('_ROOT_PLUGINS_SUPPL') && defined('_DIR_PLUGINS_SUPPL') && _DIR_PLUGINS_SUPPL) {
2656
+        define('_ROOT_PLUGINS_SUPPL', _ROOT_RACINE . str_replace(_DIR_RACINE, '', _DIR_PLUGINS_SUPPL));
2657
+    }
2658
+
2659
+    // La taille des Log
2660
+    if (!defined('_MAX_LOG')) {
2661
+        define('_MAX_LOG', 100);
2662
+    }
2663
+
2664
+    // Sommes-nous dans l'empire du Mal ?
2665
+    // (ou sous le signe du Pingouin, ascendant GNU ?)
2666
+    if (isset($_SERVER['SERVER_SOFTWARE']) and strpos($_SERVER['SERVER_SOFTWARE'], '(Win') !== false) {
2667
+        if (!defined('_OS_SERVEUR')) {
2668
+            define('_OS_SERVEUR', 'windows');
2669
+        }
2670
+        if (!defined('_SPIP_LOCK_MODE')) {
2671
+            define('_SPIP_LOCK_MODE', 1);
2672
+        } // utiliser le flock php
2673
+    } else {
2674
+        if (!defined('_OS_SERVEUR')) {
2675
+            define('_OS_SERVEUR', '');
2676
+        }
2677
+        if (!defined('_SPIP_LOCK_MODE')) {
2678
+            define('_SPIP_LOCK_MODE', 1);
2679
+        } // utiliser le flock php
2680
+        #if (!defined('_SPIP_LOCK_MODE')) define('_SPIP_LOCK_MODE',2); // utiliser le nfslock de spip mais link() est tres souvent interdite
2681
+    }
2682
+
2683
+    // Langue par defaut
2684
+    if (!defined('_LANGUE_PAR_DEFAUT')) {
2685
+        define('_LANGUE_PAR_DEFAUT', 'fr');
2686
+    }
2687
+
2688
+    //
2689
+    // Module de lecture/ecriture/suppression de fichiers utilisant flock()
2690
+    // (non surchargeable en l'etat ; attention si on utilise include_spip()
2691
+    // pour le rendre surchargeable, on va provoquer un reecriture
2692
+    // systematique du noyau ou une baisse de perfs => a etudier)
2693
+    include_once _ROOT_RESTREINT . 'inc/flock.php';
2694
+
2695
+    // charger tout de suite le path et son cache
2696
+    load_path_cache();
2697
+
2698
+    // *********** traiter les variables ************
2699
+
2700
+    //
2701
+    // Securite
2702
+    //
2703
+
2704
+    // Ne pas se faire manger par un bug php qui accepte ?GLOBALS[truc]=toto
2705
+    if (isset($_REQUEST['GLOBALS'])) {
2706
+        die();
2707
+    }
2708
+    // nettoyer les magic quotes \' et les caracteres nuls %00
2709
+    spip_desinfecte($_GET);
2710
+    spip_desinfecte($_POST);
2711
+    spip_desinfecte($_COOKIE);
2712
+    spip_desinfecte($_REQUEST);
2713
+
2714
+    // appliquer le cookie_prefix
2715
+    if ($GLOBALS['cookie_prefix'] != 'spip') {
2716
+        include_spip('inc/cookie');
2717
+        recuperer_cookies_spip($GLOBALS['cookie_prefix']);
2718
+    }
2719
+
2720
+    //
2721
+    // Capacites php (en fonction de la version)
2722
+    //
2723
+    $GLOBALS['flag_ob'] = (function_exists('ob_start')
2724
+        && function_exists('ini_get')
2725
+        && !strstr(@ini_get('disable_functions'), 'ob_'));
2726
+    $GLOBALS['flag_sapi_name'] = function_exists('php_sapi_name');
2727
+    $GLOBALS['flag_get_cfg_var'] = (@get_cfg_var('error_reporting') != '');
2728
+    $GLOBALS['flag_upload'] = (!$GLOBALS['flag_get_cfg_var'] ||
2729
+        (get_cfg_var('upload_max_filesize') > 0));
2730
+
2731
+
2732
+    // Compatibilite avec serveurs ne fournissant pas $REQUEST_URI
2733
+    if (isset($_SERVER['REQUEST_URI'])) {
2734
+        $GLOBALS['REQUEST_URI'] = $_SERVER['REQUEST_URI'];
2735
+    } else {
2736
+        $GLOBALS['REQUEST_URI'] = (php_sapi_name() !== 'cli') ? $_SERVER['PHP_SELF'] : '';
2737
+        if (
2738
+            !empty($_SERVER['QUERY_STRING'])
2739
+            and !strpos($_SERVER['REQUEST_URI'], '?')
2740
+        ) {
2741
+            $GLOBALS['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING'];
2742
+        }
2743
+    }
2744
+
2745
+    // Duree de validite de l'alea pour les cookies et ce qui s'ensuit.
2746
+    if (!defined('_RENOUVELLE_ALEA')) {
2747
+        define('_RENOUVELLE_ALEA', 12 * 3600);
2748
+    }
2749
+    if (!defined('_DUREE_COOKIE_ADMIN')) {
2750
+        define('_DUREE_COOKIE_ADMIN', 14 * 24 * 3600);
2751
+    }
2752
+
2753
+    // charger les meta si possible et renouveller l'alea au besoin
2754
+    // charge aussi effacer_meta et ecrire_meta
2755
+    $inc_meta = charger_fonction('meta', 'inc');
2756
+    $inc_meta();
2757
+
2758
+    // nombre de repertoires depuis la racine
2759
+    // on compare a l'adresse de spip.php : $_SERVER["SCRIPT_NAME"]
2760
+    // ou a defaut celle donnee en meta ; (mais si celle-ci est fausse
2761
+    // le calcul est faux)
2762
+    if (!_DIR_RESTREINT) {
2763
+        $GLOBALS['profondeur_url'] = 1;
2764
+    } else {
2765
+        $uri = isset($_SERVER['REQUEST_URI']) ? explode('?', $_SERVER['REQUEST_URI']) : '';
2766
+        $uri_ref = $_SERVER['SCRIPT_NAME'];
2767
+        if (
2768
+            !$uri_ref
2769
+            // si on est appele avec un autre ti, on est sans doute en mutu
2770
+            // si jamais c'est de la mutu avec sous rep, on est perdu si on se fie
2771
+            // a spip.php qui est a la racine du spip, et vue qu'on sait pas se reperer
2772
+            // s'en remettre a l'adresse du site. alea jacta est.
2773
+            or $ti !== _NOM_TEMPORAIRES_INACCESSIBLES
2774
+        ) {
2775
+            if (isset($GLOBALS['meta']['adresse_site'])) {
2776
+                $uri_ref = parse_url($GLOBALS['meta']['adresse_site']);
2777
+                $uri_ref = ($uri_ref['path'] ?? '') . '/';
2778
+            } else {
2779
+                $uri_ref = '';
2780
+            }
2781
+        }
2782
+        if (!$uri or !$uri_ref) {
2783
+            $GLOBALS['profondeur_url'] = 0;
2784
+        } else {
2785
+            $GLOBALS['profondeur_url'] = max(
2786
+                0,
2787
+                substr_count($uri[0], '/')
2788
+                - substr_count($uri_ref, '/')
2789
+            );
2790
+        }
2791
+    }
2792
+    // s'il y a un cookie ou PHP_AUTH, initialiser visiteur_session
2793
+    if (_FILE_CONNECT) {
2794
+        if (
2795
+            verifier_visiteur() == '0minirezo'
2796
+            // si c'est un admin sans cookie admin, il faut ignorer le cache chemin !
2797
+            and !isset($_COOKIE['spip_admin'])
2798
+        ) {
2799
+            clear_path_cache();
2800
+        }
2801
+    }
2803 2802
 }
2804 2803
 
2805 2804
 /**
@@ -2808,157 +2807,157 @@  discard block
 block discarded – undo
2808 2807
  *
2809 2808
  */
2810 2809
 function spip_initialisation_suite() {
2811
-	static $too_late = 0;
2812
-	if ($too_late++) {
2813
-		return;
2814
-	}
2815
-
2816
-	// taille mini des login
2817
-	if (!defined('_LOGIN_TROP_COURT')) {
2818
-		define('_LOGIN_TROP_COURT', 4);
2819
-	}
2820
-
2821
-	// la taille maxi des logos (0 : pas de limite) (pas de define par defaut, ce n'est pas utile)
2822
-	#if (!defined('_LOGO_MAX_SIZE')) define('_LOGO_MAX_SIZE', 0); # poids en ko
2823
-	#if (!defined('_LOGO_MAX_WIDTH')) define('_LOGO_MAX_WIDTH', 0); # largeur en pixels
2824
-	#if (!defined('_LOGO_MAX_HEIGHT')) define('_LOGO_MAX_HEIGHT', 0); # hauteur en pixels
2825
-
2826
-	// la taille maxi des images (0 : pas de limite) (pas de define par defaut, ce n'est pas utile)
2827
-	#if (!defined('_DOC_MAX_SIZE')) define('_DOC_MAX_SIZE', 0); # poids en ko
2828
-	#if (!defined('_IMG_MAX_SIZE')) define('_IMG_MAX_SIZE', 0); # poids en ko
2829
-	#if (!defined('_IMG_MAX_WIDTH')) define('_IMG_MAX_WIDTH', 0); # largeur en pixels
2830
-	#if (!defined('_IMG_MAX_HEIGHT')) define('_IMG_MAX_HEIGHT', 0); # hauteur en pixels
2831
-
2832
-	if (!defined('_PASS_LONGUEUR_MINI')) {
2833
-		define('_PASS_LONGUEUR_MINI', 6);
2834
-	}
2835
-
2836
-	// largeur maximale des images dans l'administration
2837
-	if (!defined('_IMG_ADMIN_MAX_WIDTH')) {
2838
-		define('_IMG_ADMIN_MAX_WIDTH', 768);
2839
-	}
2840
-
2841
-	// Qualite des images calculees automatiquement. C'est un nombre entre 0 et 100, meme pour imagick (on ramene a 0..1 par la suite)
2842
-	if (!defined('_IMG_QUALITE')) {
2843
-		define('_IMG_QUALITE', 85);
2844
-	} # valeur par defaut
2845
-	if (!defined('_IMG_GD_QUALITE')) {
2846
-		define('_IMG_GD_QUALITE', _IMG_QUALITE);
2847
-	} # surcharge pour la lib GD
2848
-	if (!defined('_IMG_CONVERT_QUALITE')) {
2849
-		define('_IMG_CONVERT_QUALITE', _IMG_QUALITE);
2850
-	} # surcharge pour imagick en ligne de commande
2851
-	// Historiquement la valeur pour imagick semble differente. Si ca n'est pas necessaire, il serait preferable de garder _IMG_QUALITE
2852
-	if (!defined('_IMG_IMAGICK_QUALITE')) {
2853
-		define('_IMG_IMAGICK_QUALITE', 75);
2854
-	} # surcharge pour imagick en PHP
2855
-
2856
-	if (!defined('_COPIE_LOCALE_MAX_SIZE')) {
2857
-		define('_COPIE_LOCALE_MAX_SIZE', 33_554_432);
2858
-	} // poids en octet
2859
-
2860
-	// qq chaines standard
2861
-	if (!defined('_ACCESS_FILE_NAME')) {
2862
-		define('_ACCESS_FILE_NAME', '.htaccess');
2863
-	}
2864
-	if (!defined('_AUTH_USER_FILE')) {
2865
-		define('_AUTH_USER_FILE', '.htpasswd');
2866
-	}
2867
-	if (!defined('_SPIP_DUMP')) {
2868
-		define('_SPIP_DUMP', 'dump@nom_site@@[email protected]');
2869
-	}
2870
-	if (!defined('_CACHE_RUBRIQUES')) {
2871
-		/** Fichier cache pour le navigateur de rubrique du bandeau */
2872
-		define('_CACHE_RUBRIQUES', _DIR_TMP . 'menu-rubriques-cache.txt');
2873
-	}
2874
-	if (!defined('_CACHE_RUBRIQUES_MAX')) {
2875
-		/** Nombre maxi de rubriques enfants affichées pour chaque rubrique du navigateur de rubrique du bandeau */
2876
-		define('_CACHE_RUBRIQUES_MAX', 500);
2877
-	}
2878
-
2879
-	if (!defined('_CACHE_CONTEXTES_AJAX_SUR_LONGUEUR')) {
2880
-		/**
2881
-		 * Basculer les contextes ajax en fichier si la longueur d’url est trop grande
2882
-		 * @var int Nombre de caractères */
2883
-		define('_CACHE_CONTEXTES_AJAX_SUR_LONGUEUR', 2000);
2884
-	}
2885
-
2886
-	if (!defined('_EXTENSION_SQUELETTES')) {
2887
-		define('_EXTENSION_SQUELETTES', 'html');
2888
-	}
2889
-
2890
-	if (!defined('_DOCTYPE_ECRIRE')) {
2891
-		/** Définit le doctype de l’espace privé */
2892
-		define('_DOCTYPE_ECRIRE', "<!DOCTYPE html>\n");
2893
-	}
2894
-	if (!defined('_DOCTYPE_AIDE')) {
2895
-		/** Définit le doctype de l’aide en ligne */
2896
-		define(
2897
-			'_DOCTYPE_AIDE',
2898
-			"<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01 Frameset//EN' 'http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd'>"
2899
-		);
2900
-	}
2901
-
2902
-	if (!defined('_SPIP_SCRIPT')) {
2903
-		/** L'adresse de base du site ; on peut mettre '' si la racine est gerée par
2904
-		 * le script de l'espace public, alias index.php */
2905
-		define('_SPIP_SCRIPT', 'spip.php');
2906
-	}
2907
-	if (!defined('_SPIP_PAGE')) {
2908
-		/** Argument page, personalisable en cas de conflit avec un autre script */
2909
-		define('_SPIP_PAGE', 'page');
2910
-	}
2911
-
2912
-	// le script de l'espace prive
2913
-	// Mettre a "index.php" si DirectoryIndex ne le fait pas ou pb connexes:
2914
-	// les anciens IIS n'acceptent pas les POST sur ecrire/ (#419)
2915
-	// meme pb sur thttpd cf. https://forum.spip.net/fr_184153.html
2916
-	if (!defined('_SPIP_ECRIRE_SCRIPT')) {
2917
-		if (!empty($_SERVER['SERVER_SOFTWARE']) and preg_match(',IIS|thttpd,', $_SERVER['SERVER_SOFTWARE'])) {
2918
-			define('_SPIP_ECRIRE_SCRIPT', 'index.php');
2919
-		} else {
2920
-			define('_SPIP_ECRIRE_SCRIPT', '');
2921
-		}
2922
-	}
2923
-
2924
-
2925
-	if (!defined('_SPIP_AJAX')) {
2926
-		define('_SPIP_AJAX', ((!isset($_COOKIE['spip_accepte_ajax']))
2927
-			? 1
2928
-			: (($_COOKIE['spip_accepte_ajax'] != -1) ? 1 : 0)));
2929
-	}
2930
-
2931
-	// La requete est-elle en ajax ?
2932
-	if (!defined('_AJAX')) {
2933
-		define(
2934
-			'_AJAX',
2935
-			(isset($_SERVER['HTTP_X_REQUESTED_WITH']) # ajax jQuery
2936
-				or !empty($_REQUEST['var_ajax_redir']) # redirection 302 apres ajax jQuery
2937
-				or !empty($_REQUEST['var_ajaxcharset']) # compat ascendante pour plugins
2938
-				or !empty($_REQUEST['var_ajax']) # forms ajax & inclure ajax de spip
2939
-			)
2940
-			and empty($_REQUEST['var_noajax']) # horrible exception, car c'est pas parce que la requete est ajax jquery qu'il faut tuer tous les formulaires ajax qu'elle contient
2941
-		);
2942
-	}
2943
-
2944
-	# nombre de pixels maxi pour calcul de la vignette avec gd
2945
-	# au dela de 5500000 on considere que php n'est pas limite en memoire pour cette operation
2946
-	# les configurations limitees en memoire ont un seuil plutot vers 1MPixel
2947
-	if (!defined('_IMG_GD_MAX_PIXELS')) {
2948
-		define(
2949
-			'_IMG_GD_MAX_PIXELS',
2950
-			(isset($GLOBALS['meta']['max_taille_vignettes']) and $GLOBALS['meta']['max_taille_vignettes'])
2951
-			? $GLOBALS['meta']['max_taille_vignettes']
2952
-			: 0
2953
-		);
2954
-	}
2955
-
2956
-	// Protocoles a normaliser dans les chaines de langues
2957
-	if (!defined('_PROTOCOLES_STD')) {
2958
-		define('_PROTOCOLES_STD', 'http|https|ftp|mailto|webcal');
2959
-	}
2960
-
2961
-	init_var_mode();
2810
+    static $too_late = 0;
2811
+    if ($too_late++) {
2812
+        return;
2813
+    }
2814
+
2815
+    // taille mini des login
2816
+    if (!defined('_LOGIN_TROP_COURT')) {
2817
+        define('_LOGIN_TROP_COURT', 4);
2818
+    }
2819
+
2820
+    // la taille maxi des logos (0 : pas de limite) (pas de define par defaut, ce n'est pas utile)
2821
+    #if (!defined('_LOGO_MAX_SIZE')) define('_LOGO_MAX_SIZE', 0); # poids en ko
2822
+    #if (!defined('_LOGO_MAX_WIDTH')) define('_LOGO_MAX_WIDTH', 0); # largeur en pixels
2823
+    #if (!defined('_LOGO_MAX_HEIGHT')) define('_LOGO_MAX_HEIGHT', 0); # hauteur en pixels
2824
+
2825
+    // la taille maxi des images (0 : pas de limite) (pas de define par defaut, ce n'est pas utile)
2826
+    #if (!defined('_DOC_MAX_SIZE')) define('_DOC_MAX_SIZE', 0); # poids en ko
2827
+    #if (!defined('_IMG_MAX_SIZE')) define('_IMG_MAX_SIZE', 0); # poids en ko
2828
+    #if (!defined('_IMG_MAX_WIDTH')) define('_IMG_MAX_WIDTH', 0); # largeur en pixels
2829
+    #if (!defined('_IMG_MAX_HEIGHT')) define('_IMG_MAX_HEIGHT', 0); # hauteur en pixels
2830
+
2831
+    if (!defined('_PASS_LONGUEUR_MINI')) {
2832
+        define('_PASS_LONGUEUR_MINI', 6);
2833
+    }
2834
+
2835
+    // largeur maximale des images dans l'administration
2836
+    if (!defined('_IMG_ADMIN_MAX_WIDTH')) {
2837
+        define('_IMG_ADMIN_MAX_WIDTH', 768);
2838
+    }
2839
+
2840
+    // Qualite des images calculees automatiquement. C'est un nombre entre 0 et 100, meme pour imagick (on ramene a 0..1 par la suite)
2841
+    if (!defined('_IMG_QUALITE')) {
2842
+        define('_IMG_QUALITE', 85);
2843
+    } # valeur par defaut
2844
+    if (!defined('_IMG_GD_QUALITE')) {
2845
+        define('_IMG_GD_QUALITE', _IMG_QUALITE);
2846
+    } # surcharge pour la lib GD
2847
+    if (!defined('_IMG_CONVERT_QUALITE')) {
2848
+        define('_IMG_CONVERT_QUALITE', _IMG_QUALITE);
2849
+    } # surcharge pour imagick en ligne de commande
2850
+    // Historiquement la valeur pour imagick semble differente. Si ca n'est pas necessaire, il serait preferable de garder _IMG_QUALITE
2851
+    if (!defined('_IMG_IMAGICK_QUALITE')) {
2852
+        define('_IMG_IMAGICK_QUALITE', 75);
2853
+    } # surcharge pour imagick en PHP
2854
+
2855
+    if (!defined('_COPIE_LOCALE_MAX_SIZE')) {
2856
+        define('_COPIE_LOCALE_MAX_SIZE', 33_554_432);
2857
+    } // poids en octet
2858
+
2859
+    // qq chaines standard
2860
+    if (!defined('_ACCESS_FILE_NAME')) {
2861
+        define('_ACCESS_FILE_NAME', '.htaccess');
2862
+    }
2863
+    if (!defined('_AUTH_USER_FILE')) {
2864
+        define('_AUTH_USER_FILE', '.htpasswd');
2865
+    }
2866
+    if (!defined('_SPIP_DUMP')) {
2867
+        define('_SPIP_DUMP', 'dump@nom_site@@[email protected]');
2868
+    }
2869
+    if (!defined('_CACHE_RUBRIQUES')) {
2870
+        /** Fichier cache pour le navigateur de rubrique du bandeau */
2871
+        define('_CACHE_RUBRIQUES', _DIR_TMP . 'menu-rubriques-cache.txt');
2872
+    }
2873
+    if (!defined('_CACHE_RUBRIQUES_MAX')) {
2874
+        /** Nombre maxi de rubriques enfants affichées pour chaque rubrique du navigateur de rubrique du bandeau */
2875
+        define('_CACHE_RUBRIQUES_MAX', 500);
2876
+    }
2877
+
2878
+    if (!defined('_CACHE_CONTEXTES_AJAX_SUR_LONGUEUR')) {
2879
+        /**
2880
+         * Basculer les contextes ajax en fichier si la longueur d’url est trop grande
2881
+         * @var int Nombre de caractères */
2882
+        define('_CACHE_CONTEXTES_AJAX_SUR_LONGUEUR', 2000);
2883
+    }
2884
+
2885
+    if (!defined('_EXTENSION_SQUELETTES')) {
2886
+        define('_EXTENSION_SQUELETTES', 'html');
2887
+    }
2888
+
2889
+    if (!defined('_DOCTYPE_ECRIRE')) {
2890
+        /** Définit le doctype de l’espace privé */
2891
+        define('_DOCTYPE_ECRIRE', "<!DOCTYPE html>\n");
2892
+    }
2893
+    if (!defined('_DOCTYPE_AIDE')) {
2894
+        /** Définit le doctype de l’aide en ligne */
2895
+        define(
2896
+            '_DOCTYPE_AIDE',
2897
+            "<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01 Frameset//EN' 'http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd'>"
2898
+        );
2899
+    }
2900
+
2901
+    if (!defined('_SPIP_SCRIPT')) {
2902
+        /** L'adresse de base du site ; on peut mettre '' si la racine est gerée par
2903
+         * le script de l'espace public, alias index.php */
2904
+        define('_SPIP_SCRIPT', 'spip.php');
2905
+    }
2906
+    if (!defined('_SPIP_PAGE')) {
2907
+        /** Argument page, personalisable en cas de conflit avec un autre script */
2908
+        define('_SPIP_PAGE', 'page');
2909
+    }
2910
+
2911
+    // le script de l'espace prive
2912
+    // Mettre a "index.php" si DirectoryIndex ne le fait pas ou pb connexes:
2913
+    // les anciens IIS n'acceptent pas les POST sur ecrire/ (#419)
2914
+    // meme pb sur thttpd cf. https://forum.spip.net/fr_184153.html
2915
+    if (!defined('_SPIP_ECRIRE_SCRIPT')) {
2916
+        if (!empty($_SERVER['SERVER_SOFTWARE']) and preg_match(',IIS|thttpd,', $_SERVER['SERVER_SOFTWARE'])) {
2917
+            define('_SPIP_ECRIRE_SCRIPT', 'index.php');
2918
+        } else {
2919
+            define('_SPIP_ECRIRE_SCRIPT', '');
2920
+        }
2921
+    }
2922
+
2923
+
2924
+    if (!defined('_SPIP_AJAX')) {
2925
+        define('_SPIP_AJAX', ((!isset($_COOKIE['spip_accepte_ajax']))
2926
+            ? 1
2927
+            : (($_COOKIE['spip_accepte_ajax'] != -1) ? 1 : 0)));
2928
+    }
2929
+
2930
+    // La requete est-elle en ajax ?
2931
+    if (!defined('_AJAX')) {
2932
+        define(
2933
+            '_AJAX',
2934
+            (isset($_SERVER['HTTP_X_REQUESTED_WITH']) # ajax jQuery
2935
+                or !empty($_REQUEST['var_ajax_redir']) # redirection 302 apres ajax jQuery
2936
+                or !empty($_REQUEST['var_ajaxcharset']) # compat ascendante pour plugins
2937
+                or !empty($_REQUEST['var_ajax']) # forms ajax & inclure ajax de spip
2938
+            )
2939
+            and empty($_REQUEST['var_noajax']) # horrible exception, car c'est pas parce que la requete est ajax jquery qu'il faut tuer tous les formulaires ajax qu'elle contient
2940
+        );
2941
+    }
2942
+
2943
+    # nombre de pixels maxi pour calcul de la vignette avec gd
2944
+    # au dela de 5500000 on considere que php n'est pas limite en memoire pour cette operation
2945
+    # les configurations limitees en memoire ont un seuil plutot vers 1MPixel
2946
+    if (!defined('_IMG_GD_MAX_PIXELS')) {
2947
+        define(
2948
+            '_IMG_GD_MAX_PIXELS',
2949
+            (isset($GLOBALS['meta']['max_taille_vignettes']) and $GLOBALS['meta']['max_taille_vignettes'])
2950
+            ? $GLOBALS['meta']['max_taille_vignettes']
2951
+            : 0
2952
+        );
2953
+    }
2954
+
2955
+    // Protocoles a normaliser dans les chaines de langues
2956
+    if (!defined('_PROTOCOLES_STD')) {
2957
+        define('_PROTOCOLES_STD', 'http|https|ftp|mailto|webcal');
2958
+    }
2959
+
2960
+    init_var_mode();
2962 2961
 }
2963 2962
 
2964 2963
 /**
@@ -2992,219 +2991,219 @@  discard block
 block discarded – undo
2992 2991
  * `   var_mode` (calcul ou recalcul).
2993 2992
  */
2994 2993
 function init_var_mode() {
2995
-	static $done = false;
2996
-	if (!$done) {
2997
-		if (isset($_GET['var_mode'])) {
2998
-			$var_mode = explode(',', $_GET['var_mode']);
2999
-			// tout le monde peut calcul/recalcul
3000
-			if (!defined('_VAR_MODE')) {
3001
-				if (in_array('recalcul', $var_mode)) {
3002
-					define('_VAR_MODE', 'recalcul');
3003
-				} elseif (in_array('calcul', $var_mode)) {
3004
-					define('_VAR_MODE', 'calcul');
3005
-				}
3006
-			}
3007
-			$var_mode = array_diff($var_mode, ['calcul', 'recalcul']);
3008
-			if ($var_mode) {
3009
-				include_spip('inc/autoriser');
3010
-				// autoriser preview si preview seulement, et sinon autoriser debug
3011
-				if (
3012
-					autoriser(
3013
-						($_GET['var_mode'] == 'preview')
3014
-						? 'previsualiser'
3015
-						: 'debug'
3016
-					)
3017
-				) {
3018
-					if (in_array('traduction', $var_mode)) {
3019
-						// forcer le calcul pour passer dans traduire
3020
-						if (!defined('_VAR_MODE')) {
3021
-							define('_VAR_MODE', 'calcul');
3022
-						}
3023
-						// et ne pas enregistrer de cache pour ne pas trainer les surlignages sur d'autres pages
3024
-						if (!defined('_VAR_NOCACHE')) {
3025
-							define('_VAR_NOCACHE', true);
3026
-						}
3027
-						$var_mode = array_diff($var_mode, ['traduction']);
3028
-					}
3029
-					if (in_array('preview', $var_mode)) {
3030
-						// basculer sur les criteres de preview dans les boucles
3031
-						if (!defined('_VAR_PREVIEW')) {
3032
-							define('_VAR_PREVIEW', true);
3033
-						}
3034
-						// forcer le calcul
3035
-						if (!defined('_VAR_MODE')) {
3036
-							define('_VAR_MODE', 'calcul');
3037
-						}
3038
-						// et ne pas enregistrer de cache
3039
-						if (!defined('_VAR_NOCACHE')) {
3040
-							define('_VAR_NOCACHE', true);
3041
-						}
3042
-						$var_mode = array_diff($var_mode, ['preview']);
3043
-					}
3044
-					if (in_array('inclure', $var_mode)) {
3045
-						// forcer le compilo et ignorer les caches existants
3046
-						if (!defined('_VAR_MODE')) {
3047
-							define('_VAR_MODE', 'calcul');
3048
-						}
3049
-						if (!defined('_VAR_INCLURE')) {
3050
-							define('_VAR_INCLURE', true);
3051
-						}
3052
-						// et ne pas enregistrer de cache
3053
-						if (!defined('_VAR_NOCACHE')) {
3054
-							define('_VAR_NOCACHE', true);
3055
-						}
3056
-						$var_mode = array_diff($var_mode, ['inclure']);
3057
-					}
3058
-					if (in_array('urls', $var_mode)) {
3059
-						// forcer le compilo et ignorer les caches existants
3060
-						if (!defined('_VAR_MODE')) {
3061
-							define('_VAR_MODE', 'calcul');
3062
-						}
3063
-						if (!defined('_VAR_URLS')) {
3064
-							define('_VAR_URLS', true);
3065
-						}
3066
-						$var_mode = array_diff($var_mode, ['urls']);
3067
-					}
3068
-					if (in_array('images', $var_mode)) {
3069
-						// forcer le compilo et ignorer les caches existants
3070
-						if (!defined('_VAR_MODE')) {
3071
-							define('_VAR_MODE', 'calcul');
3072
-						}
3073
-						// indiquer qu'on doit recalculer les images
3074
-						if (!defined('_VAR_IMAGES')) {
3075
-							define('_VAR_IMAGES', true);
3076
-						}
3077
-						$var_mode = array_diff($var_mode, ['images']);
3078
-					}
3079
-					if (in_array('debug', $var_mode)) {
3080
-						if (!defined('_VAR_MODE')) {
3081
-							define('_VAR_MODE', 'debug');
3082
-						}
3083
-						// et ne pas enregistrer de cache
3084
-						if (!defined('_VAR_NOCACHE')) {
3085
-							define('_VAR_NOCACHE', true);
3086
-						}
3087
-						$var_mode = array_diff($var_mode, ['debug']);
3088
-					}
3089
-					if (count($var_mode) and !defined('_VAR_MODE')) {
3090
-						define('_VAR_MODE', reset($var_mode));
3091
-					}
3092
-					if (isset($GLOBALS['visiteur_session']['nom'])) {
3093
-						spip_log($GLOBALS['visiteur_session']['nom']
3094
-							. ' ' . _VAR_MODE);
3095
-					}
3096
-				} // pas autorise ?
3097
-				else {
3098
-					// si on n'est pas connecte on se redirige, si on est pas en cli et pas deja en train de se loger
3099
-					if (
3100
-						!$GLOBALS['visiteur_session']
3101
-						and !empty($_SERVER['HTTP_HOST'])
3102
-						and !empty($_SERVER['REQUEST_METHOD'])
3103
-						and $_SERVER['REQUEST_METHOD'] === 'GET'
3104
-					) {
3105
-						$self = self('&', true);
3106
-						if (strpos($self, 'page=login') === false) {
3107
-							include_spip('inc/headers');
3108
-							$redirect = parametre_url(self('&', true), 'var_mode', $_GET['var_mode'], '&');
3109
-							redirige_par_entete(generer_url_public('login', 'url=' . rawurlencode($redirect), true));
3110
-						}
3111
-					}
3112
-					// sinon tant pis
3113
-				}
3114
-			}
3115
-		}
3116
-		if (!defined('_VAR_MODE')) {
3117
-			/**
3118
-			 * Indique le mode de calcul ou d'affichage de la page.
3119
-			 * @see init_var_mode()
3120
-			 */
3121
-			define('_VAR_MODE', false);
3122
-		}
3123
-		$done = true;
3124
-	}
2994
+    static $done = false;
2995
+    if (!$done) {
2996
+        if (isset($_GET['var_mode'])) {
2997
+            $var_mode = explode(',', $_GET['var_mode']);
2998
+            // tout le monde peut calcul/recalcul
2999
+            if (!defined('_VAR_MODE')) {
3000
+                if (in_array('recalcul', $var_mode)) {
3001
+                    define('_VAR_MODE', 'recalcul');
3002
+                } elseif (in_array('calcul', $var_mode)) {
3003
+                    define('_VAR_MODE', 'calcul');
3004
+                }
3005
+            }
3006
+            $var_mode = array_diff($var_mode, ['calcul', 'recalcul']);
3007
+            if ($var_mode) {
3008
+                include_spip('inc/autoriser');
3009
+                // autoriser preview si preview seulement, et sinon autoriser debug
3010
+                if (
3011
+                    autoriser(
3012
+                        ($_GET['var_mode'] == 'preview')
3013
+                        ? 'previsualiser'
3014
+                        : 'debug'
3015
+                    )
3016
+                ) {
3017
+                    if (in_array('traduction', $var_mode)) {
3018
+                        // forcer le calcul pour passer dans traduire
3019
+                        if (!defined('_VAR_MODE')) {
3020
+                            define('_VAR_MODE', 'calcul');
3021
+                        }
3022
+                        // et ne pas enregistrer de cache pour ne pas trainer les surlignages sur d'autres pages
3023
+                        if (!defined('_VAR_NOCACHE')) {
3024
+                            define('_VAR_NOCACHE', true);
3025
+                        }
3026
+                        $var_mode = array_diff($var_mode, ['traduction']);
3027
+                    }
3028
+                    if (in_array('preview', $var_mode)) {
3029
+                        // basculer sur les criteres de preview dans les boucles
3030
+                        if (!defined('_VAR_PREVIEW')) {
3031
+                            define('_VAR_PREVIEW', true);
3032
+                        }
3033
+                        // forcer le calcul
3034
+                        if (!defined('_VAR_MODE')) {
3035
+                            define('_VAR_MODE', 'calcul');
3036
+                        }
3037
+                        // et ne pas enregistrer de cache
3038
+                        if (!defined('_VAR_NOCACHE')) {
3039
+                            define('_VAR_NOCACHE', true);
3040
+                        }
3041
+                        $var_mode = array_diff($var_mode, ['preview']);
3042
+                    }
3043
+                    if (in_array('inclure', $var_mode)) {
3044
+                        // forcer le compilo et ignorer les caches existants
3045
+                        if (!defined('_VAR_MODE')) {
3046
+                            define('_VAR_MODE', 'calcul');
3047
+                        }
3048
+                        if (!defined('_VAR_INCLURE')) {
3049
+                            define('_VAR_INCLURE', true);
3050
+                        }
3051
+                        // et ne pas enregistrer de cache
3052
+                        if (!defined('_VAR_NOCACHE')) {
3053
+                            define('_VAR_NOCACHE', true);
3054
+                        }
3055
+                        $var_mode = array_diff($var_mode, ['inclure']);
3056
+                    }
3057
+                    if (in_array('urls', $var_mode)) {
3058
+                        // forcer le compilo et ignorer les caches existants
3059
+                        if (!defined('_VAR_MODE')) {
3060
+                            define('_VAR_MODE', 'calcul');
3061
+                        }
3062
+                        if (!defined('_VAR_URLS')) {
3063
+                            define('_VAR_URLS', true);
3064
+                        }
3065
+                        $var_mode = array_diff($var_mode, ['urls']);
3066
+                    }
3067
+                    if (in_array('images', $var_mode)) {
3068
+                        // forcer le compilo et ignorer les caches existants
3069
+                        if (!defined('_VAR_MODE')) {
3070
+                            define('_VAR_MODE', 'calcul');
3071
+                        }
3072
+                        // indiquer qu'on doit recalculer les images
3073
+                        if (!defined('_VAR_IMAGES')) {
3074
+                            define('_VAR_IMAGES', true);
3075
+                        }
3076
+                        $var_mode = array_diff($var_mode, ['images']);
3077
+                    }
3078
+                    if (in_array('debug', $var_mode)) {
3079
+                        if (!defined('_VAR_MODE')) {
3080
+                            define('_VAR_MODE', 'debug');
3081
+                        }
3082
+                        // et ne pas enregistrer de cache
3083
+                        if (!defined('_VAR_NOCACHE')) {
3084
+                            define('_VAR_NOCACHE', true);
3085
+                        }
3086
+                        $var_mode = array_diff($var_mode, ['debug']);
3087
+                    }
3088
+                    if (count($var_mode) and !defined('_VAR_MODE')) {
3089
+                        define('_VAR_MODE', reset($var_mode));
3090
+                    }
3091
+                    if (isset($GLOBALS['visiteur_session']['nom'])) {
3092
+                        spip_log($GLOBALS['visiteur_session']['nom']
3093
+                            . ' ' . _VAR_MODE);
3094
+                    }
3095
+                } // pas autorise ?
3096
+                else {
3097
+                    // si on n'est pas connecte on se redirige, si on est pas en cli et pas deja en train de se loger
3098
+                    if (
3099
+                        !$GLOBALS['visiteur_session']
3100
+                        and !empty($_SERVER['HTTP_HOST'])
3101
+                        and !empty($_SERVER['REQUEST_METHOD'])
3102
+                        and $_SERVER['REQUEST_METHOD'] === 'GET'
3103
+                    ) {
3104
+                        $self = self('&', true);
3105
+                        if (strpos($self, 'page=login') === false) {
3106
+                            include_spip('inc/headers');
3107
+                            $redirect = parametre_url(self('&', true), 'var_mode', $_GET['var_mode'], '&');
3108
+                            redirige_par_entete(generer_url_public('login', 'url=' . rawurlencode($redirect), true));
3109
+                        }
3110
+                    }
3111
+                    // sinon tant pis
3112
+                }
3113
+            }
3114
+        }
3115
+        if (!defined('_VAR_MODE')) {
3116
+            /**
3117
+             * Indique le mode de calcul ou d'affichage de la page.
3118
+             * @see init_var_mode()
3119
+             */
3120
+            define('_VAR_MODE', false);
3121
+        }
3122
+        $done = true;
3123
+    }
3125 3124
 }
3126 3125
 
3127 3126
 // Annuler les magic quotes \' sur GET POST COOKIE et GLOBALS ;
3128 3127
 // supprimer aussi les eventuels caracteres nuls %00, qui peuvent tromper
3129 3128
 // la commande is_readable('chemin/vers/fichier/interdit%00truc_normal')
3130 3129
 function spip_desinfecte(&$t, $deep = true) {
3131
-	foreach ($t as $key => $val) {
3132
-		if (is_string($t[$key])) {
3133
-			$t[$key] = str_replace(chr(0), '-', $t[$key]);
3134
-		} // traiter aussi les "texte_plus" de article_edit
3135
-		else {
3136
-			if ($deep and is_array($t[$key]) and $key !== 'GLOBALS') {
3137
-				spip_desinfecte($t[$key], $deep);
3138
-			}
3139
-		}
3140
-	}
3130
+    foreach ($t as $key => $val) {
3131
+        if (is_string($t[$key])) {
3132
+            $t[$key] = str_replace(chr(0), '-', $t[$key]);
3133
+        } // traiter aussi les "texte_plus" de article_edit
3134
+        else {
3135
+            if ($deep and is_array($t[$key]) and $key !== 'GLOBALS') {
3136
+                spip_desinfecte($t[$key], $deep);
3137
+            }
3138
+        }
3139
+    }
3141 3140
 }
3142 3141
 
3143 3142
 //  retourne le statut du visiteur s'il s'annonce
3144 3143
 
3145 3144
 function verifier_visiteur() {
3146
-	// Rq: pour que cette fonction marche depuis mes_options
3147
-	// il faut forcer l'init si ce n'est fait
3148
-	// mais on risque de perturber des plugins en initialisant trop tot
3149
-	// certaines constantes
3150
-	@spip_initialisation_core(
3151
-		(_DIR_RACINE . _NOM_PERMANENTS_INACCESSIBLES),
3152
-		(_DIR_RACINE . _NOM_PERMANENTS_ACCESSIBLES),
3153
-		(_DIR_RACINE . _NOM_TEMPORAIRES_INACCESSIBLES),
3154
-		(_DIR_RACINE . _NOM_TEMPORAIRES_ACCESSIBLES)
3155
-	);
3156
-
3157
-	// Demarrer une session NON AUTHENTIFIEE si on donne son nom
3158
-	// dans un formulaire sans login (ex: #FORMULAIRE_FORUM)
3159
-	// Attention on separe bien session_nom et nom, pour eviter
3160
-	// les melanges entre donnees SQL et variables plus aleatoires
3161
-	$variables_session = ['session_nom', 'session_email'];
3162
-	foreach ($variables_session as $var) {
3163
-		if (_request($var) !== null) {
3164
-			$init = true;
3165
-			break;
3166
-		}
3167
-	}
3168
-	if (isset($init)) {
3169
-		#@spip_initialisation_suite();
3170
-		$session = charger_fonction('session', 'inc');
3171
-		$session();
3172
-		include_spip('inc/texte');
3173
-		foreach ($variables_session as $var) {
3174
-			if (($a = _request($var)) !== null) {
3175
-				$GLOBALS['visiteur_session'][$var] = safehtml($a);
3176
-			}
3177
-		}
3178
-		if (!isset($GLOBALS['visiteur_session']['id_auteur'])) {
3179
-			$GLOBALS['visiteur_session']['id_auteur'] = 0;
3180
-		}
3181
-		$session($GLOBALS['visiteur_session']);
3182
-
3183
-		return 0;
3184
-	}
3185
-
3186
-	$h = (isset($_SERVER['PHP_AUTH_USER']) and !$GLOBALS['ignore_auth_http']);
3187
-	if ($h or isset($_COOKIE['spip_session']) or isset($_COOKIE[$GLOBALS['cookie_prefix'] . '_session'])) {
3188
-		$session = charger_fonction('session', 'inc');
3189
-		if ($session()) {
3190
-			return $GLOBALS['visiteur_session']['statut'];
3191
-		}
3192
-		if ($h and isset($_SERVER['PHP_AUTH_PW'])) {
3193
-			include_spip('inc/auth');
3194
-			$h = lire_php_auth($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']);
3195
-		}
3196
-		if ($h) {
3197
-			$GLOBALS['visiteur_session'] = $h;
3198
-
3199
-			return $GLOBALS['visiteur_session']['statut'];
3200
-		}
3201
-	}
3202
-
3203
-	// au moins son navigateur nous dit la langue preferee de cet inconnu
3204
-	include_spip('inc/lang');
3205
-	utiliser_langue_visiteur();
3206
-
3207
-	return false;
3145
+    // Rq: pour que cette fonction marche depuis mes_options
3146
+    // il faut forcer l'init si ce n'est fait
3147
+    // mais on risque de perturber des plugins en initialisant trop tot
3148
+    // certaines constantes
3149
+    @spip_initialisation_core(
3150
+        (_DIR_RACINE . _NOM_PERMANENTS_INACCESSIBLES),
3151
+        (_DIR_RACINE . _NOM_PERMANENTS_ACCESSIBLES),
3152
+        (_DIR_RACINE . _NOM_TEMPORAIRES_INACCESSIBLES),
3153
+        (_DIR_RACINE . _NOM_TEMPORAIRES_ACCESSIBLES)
3154
+    );
3155
+
3156
+    // Demarrer une session NON AUTHENTIFIEE si on donne son nom
3157
+    // dans un formulaire sans login (ex: #FORMULAIRE_FORUM)
3158
+    // Attention on separe bien session_nom et nom, pour eviter
3159
+    // les melanges entre donnees SQL et variables plus aleatoires
3160
+    $variables_session = ['session_nom', 'session_email'];
3161
+    foreach ($variables_session as $var) {
3162
+        if (_request($var) !== null) {
3163
+            $init = true;
3164
+            break;
3165
+        }
3166
+    }
3167
+    if (isset($init)) {
3168
+        #@spip_initialisation_suite();
3169
+        $session = charger_fonction('session', 'inc');
3170
+        $session();
3171
+        include_spip('inc/texte');
3172
+        foreach ($variables_session as $var) {
3173
+            if (($a = _request($var)) !== null) {
3174
+                $GLOBALS['visiteur_session'][$var] = safehtml($a);
3175
+            }
3176
+        }
3177
+        if (!isset($GLOBALS['visiteur_session']['id_auteur'])) {
3178
+            $GLOBALS['visiteur_session']['id_auteur'] = 0;
3179
+        }
3180
+        $session($GLOBALS['visiteur_session']);
3181
+
3182
+        return 0;
3183
+    }
3184
+
3185
+    $h = (isset($_SERVER['PHP_AUTH_USER']) and !$GLOBALS['ignore_auth_http']);
3186
+    if ($h or isset($_COOKIE['spip_session']) or isset($_COOKIE[$GLOBALS['cookie_prefix'] . '_session'])) {
3187
+        $session = charger_fonction('session', 'inc');
3188
+        if ($session()) {
3189
+            return $GLOBALS['visiteur_session']['statut'];
3190
+        }
3191
+        if ($h and isset($_SERVER['PHP_AUTH_PW'])) {
3192
+            include_spip('inc/auth');
3193
+            $h = lire_php_auth($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']);
3194
+        }
3195
+        if ($h) {
3196
+            $GLOBALS['visiteur_session'] = $h;
3197
+
3198
+            return $GLOBALS['visiteur_session']['statut'];
3199
+        }
3200
+    }
3201
+
3202
+    // au moins son navigateur nous dit la langue preferee de cet inconnu
3203
+    include_spip('inc/lang');
3204
+    utiliser_langue_visiteur();
3205
+
3206
+    return false;
3208 3207
 }
3209 3208
 
3210 3209
 
@@ -3227,21 +3226,21 @@  discard block
 block discarded – undo
3227 3226
  *     - string Langue utilisée.
3228 3227
  **/
3229 3228
 function lang_select($lang = null) {
3230
-	static $pile_langues = [];
3231
-	if (!function_exists('changer_langue')) {
3232
-		include_spip('inc/lang');
3233
-	}
3234
-	if ($lang === null) {
3235
-		$lang = array_pop($pile_langues);
3236
-	} else {
3237
-		array_push($pile_langues, $GLOBALS['spip_lang']);
3238
-	}
3239
-	if (isset($GLOBALS['spip_lang']) and $lang == $GLOBALS['spip_lang']) {
3240
-		return $lang;
3241
-	}
3242
-	changer_langue($lang);
3229
+    static $pile_langues = [];
3230
+    if (!function_exists('changer_langue')) {
3231
+        include_spip('inc/lang');
3232
+    }
3233
+    if ($lang === null) {
3234
+        $lang = array_pop($pile_langues);
3235
+    } else {
3236
+        array_push($pile_langues, $GLOBALS['spip_lang']);
3237
+    }
3238
+    if (isset($GLOBALS['spip_lang']) and $lang == $GLOBALS['spip_lang']) {
3239
+        return $lang;
3240
+    }
3241
+    changer_langue($lang);
3243 3242
 
3244
-	return $lang;
3243
+    return $lang;
3245 3244
 }
3246 3245
 
3247 3246
 /**
@@ -3258,20 +3257,20 @@  discard block
 block discarded – undo
3258 3257
  *     Identifiant de la session
3259 3258
  **/
3260 3259
 function spip_session($force = false) {
3261
-	static $session;
3262
-	if ($force or !isset($session)) {
3263
-		$s = pipeline(
3264
-			'definir_session',
3265
-			$GLOBALS['visiteur_session']
3266
-				? serialize($GLOBALS['visiteur_session'])
3267
-				. '_' . @$_COOKIE['spip_session']
3268
-				: ''
3269
-		);
3270
-		$session = $s ? substr(md5($s), 0, 8) : '';
3271
-	}
3260
+    static $session;
3261
+    if ($force or !isset($session)) {
3262
+        $s = pipeline(
3263
+            'definir_session',
3264
+            $GLOBALS['visiteur_session']
3265
+                ? serialize($GLOBALS['visiteur_session'])
3266
+                . '_' . @$_COOKIE['spip_session']
3267
+                : ''
3268
+        );
3269
+        $session = $s ? substr(md5($s), 0, 8) : '';
3270
+    }
3272 3271
 
3273
-	#spip_log('session: '.$session);
3274
-	return $session;
3272
+    #spip_log('session: '.$session);
3273
+    return $session;
3275 3274
 }
3276 3275
 
3277 3276
 
@@ -3290,9 +3289,9 @@  discard block
 block discarded – undo
3290 3289
  *    Lien sur une icone d'aide
3291 3290
  **/
3292 3291
 function aider($aide = '', $distante = false) {
3293
-	$aider = charger_fonction('aide', 'inc', true);
3292
+    $aider = charger_fonction('aide', 'inc', true);
3294 3293
 
3295
-	return $aider ? $aider($aide, '', [], $distante) : '';
3294
+    return $aider ? $aider($aide, '', [], $distante) : '';
3296 3295
 }
3297 3296
 
3298 3297
 /**
@@ -3302,24 +3301,24 @@  discard block
 block discarded – undo
3302 3301
  */
3303 3302
 function exec_info_dist() {
3304 3303
 
3305
-	include_spip('inc/autoriser');
3306
-	if (autoriser('phpinfos')) {
3307
-		$cookies_masques = ['spip_session', 'PHPSESSID'];
3308
-		$cookies_backup = [];
3309
-		foreach ($cookies_masques as $k) {
3310
-			if (!empty($_COOKIE[$k])) {
3311
-				$cookies_backup[$k] = $_COOKIE[$k];
3312
-				$_COOKIE[$k] = '******************************';
3313
-			}
3314
-		}
3315
-		phpinfo();
3316
-		foreach ($cookies_backup as $k => $v) {
3317
-			$_COOKIE[$k] = $v;
3318
-		}
3319
-	} else {
3320
-		include_spip('inc/filtres');
3321
-		sinon_interdire_acces();
3322
-	}
3304
+    include_spip('inc/autoriser');
3305
+    if (autoriser('phpinfos')) {
3306
+        $cookies_masques = ['spip_session', 'PHPSESSID'];
3307
+        $cookies_backup = [];
3308
+        foreach ($cookies_masques as $k) {
3309
+            if (!empty($_COOKIE[$k])) {
3310
+                $cookies_backup[$k] = $_COOKIE[$k];
3311
+                $_COOKIE[$k] = '******************************';
3312
+            }
3313
+        }
3314
+        phpinfo();
3315
+        foreach ($cookies_backup as $k => $v) {
3316
+            $_COOKIE[$k] = $v;
3317
+        }
3318
+    } else {
3319
+        include_spip('inc/filtres');
3320
+        sinon_interdire_acces();
3321
+    }
3323 3322
 }
3324 3323
 
3325 3324
 /**
@@ -3339,13 +3338,13 @@  discard block
 block discarded – undo
3339 3338
  *     - string si $message à false.
3340 3339
  **/
3341 3340
 function erreur_squelette($message = '', $lieu = '') {
3342
-	$debusquer = charger_fonction('debusquer', 'public');
3343
-	if (is_array($lieu)) {
3344
-		include_spip('public/compiler');
3345
-		$lieu = reconstruire_contexte_compil($lieu);
3346
-	}
3341
+    $debusquer = charger_fonction('debusquer', 'public');
3342
+    if (is_array($lieu)) {
3343
+        include_spip('public/compiler');
3344
+        $lieu = reconstruire_contexte_compil($lieu);
3345
+    }
3347 3346
 
3348
-	return $debusquer($message, $lieu);
3347
+    return $debusquer($message, $lieu);
3349 3348
 }
3350 3349
 
3351 3350
 /**
@@ -3382,108 +3381,108 @@  discard block
 block discarded – undo
3382 3381
  *     - ou tableau d'information sur le squelette.
3383 3382
  */
3384 3383
 function recuperer_fond($fond, $contexte = [], $options = [], string $connect = '') {
3385
-	if (!function_exists('evaluer_fond')) {
3386
-		include_spip('public/assembler');
3387
-	}
3388
-	// assurer la compat avec l'ancienne syntaxe
3389
-	// (trim etait le 3eme argument, par defaut a true)
3390
-	if (!is_array($options)) {
3391
-		$options = ['trim' => $options];
3392
-	}
3393
-	if (!isset($options['trim'])) {
3394
-		$options['trim'] = true;
3395
-	}
3396
-
3397
-	if (isset($contexte['connect'])) {
3398
-		$connect = $contexte['connect'];
3399
-		unset($contexte['connect']);
3400
-	}
3401
-
3402
-	$texte = '';
3403
-	$pages = [];
3404
-	$lang_select = '';
3405
-	if (!isset($options['etoile']) or !$options['etoile']) {
3406
-		// Si on a inclus sans fixer le critere de lang, on prend la langue courante
3407
-		if (!isset($contexte['lang'])) {
3408
-			$contexte['lang'] = $GLOBALS['spip_lang'];
3409
-		}
3410
-
3411
-		if ($contexte['lang'] != $GLOBALS['meta']['langue_site']) {
3412
-			$lang_select = lang_select($contexte['lang']);
3413
-		}
3414
-	}
3415
-
3416
-	if (!isset($GLOBALS['_INC_PUBLIC'])) {
3417
-		$GLOBALS['_INC_PUBLIC'] = 0;
3418
-	}
3419
-
3420
-	$GLOBALS['_INC_PUBLIC']++;
3421
-
3422
-	// fix #4235
3423
-	$cache_utilise_session_appelant	= ($GLOBALS['cache_utilise_session'] ?? null);
3424
-
3425
-
3426
-	foreach (is_array($fond) ? $fond : [$fond] as $f) {
3427
-		unset($GLOBALS['cache_utilise_session']);	// fix #4235
3428
-
3429
-		$page = evaluer_fond($f, $contexte, $connect);
3430
-		if ($page === '') {
3431
-			$c = $options['compil'] ?? '';
3432
-			$a = ['fichier' => $f];
3433
-			$erreur = _T('info_erreur_squelette2', $a); // squelette introuvable
3434
-			erreur_squelette($erreur, $c);
3435
-			// eviter des erreurs strictes ensuite sur $page['cle'] en PHP >= 5.4
3436
-			$page = ['texte' => '', 'erreur' => $erreur];
3437
-		}
3438
-
3439
-		$page = pipeline('recuperer_fond', [
3440
-			'args' => ['fond' => $f, 'contexte' => $contexte, 'options' => $options, 'connect' => $connect],
3441
-			'data' => $page
3442
-		]);
3443
-		if (isset($options['ajax']) and $options['ajax']) {
3444
-			if (!function_exists('encoder_contexte_ajax')) {
3445
-				include_spip('inc/filtres');
3446
-			}
3447
-			$page['texte'] = encoder_contexte_ajax(
3448
-				array_merge(
3449
-					$contexte,
3450
-					['fond' => $f],
3451
-					($connect ? ['connect' => $connect] : [])
3452
-				),
3453
-				'',
3454
-				$page['texte'],
3455
-				$options['ajax']
3456
-			);
3457
-		}
3458
-
3459
-		if (isset($options['raw']) and $options['raw']) {
3460
-			$pages[] = $page;
3461
-		} else {
3462
-			$texte .= $options['trim'] ? rtrim($page['texte'] ?? '') : $page['texte'];
3463
-		}
3464
-
3465
-		// contamination de la session appelante, pour les inclusions statiques
3466
-		if (isset($page['invalideurs']['session'])) {
3467
-			$cache_utilise_session_appelant = $page['invalideurs']['session'];
3468
-		}
3469
-	}
3470
-
3471
-	// restaurer le sessionnement du contexte appelant,
3472
-	// éventuellement contaminé si on vient de récupérer une inclusion statique sessionnée
3473
-	if (isset($cache_utilise_session_appelant)) {
3474
-		$GLOBALS['cache_utilise_session'] = $cache_utilise_session_appelant;
3475
-	}
3476
-
3477
-	$GLOBALS['_INC_PUBLIC']--;
3478
-
3479
-	if ($lang_select) {
3480
-		lang_select();
3481
-	}
3482
-	if (isset($options['raw']) and $options['raw']) {
3483
-		return is_array($fond) ? $pages : reset($pages);
3484
-	} else {
3485
-		return $options['trim'] ? ltrim($texte) : $texte;
3486
-	}
3384
+    if (!function_exists('evaluer_fond')) {
3385
+        include_spip('public/assembler');
3386
+    }
3387
+    // assurer la compat avec l'ancienne syntaxe
3388
+    // (trim etait le 3eme argument, par defaut a true)
3389
+    if (!is_array($options)) {
3390
+        $options = ['trim' => $options];
3391
+    }
3392
+    if (!isset($options['trim'])) {
3393
+        $options['trim'] = true;
3394
+    }
3395
+
3396
+    if (isset($contexte['connect'])) {
3397
+        $connect = $contexte['connect'];
3398
+        unset($contexte['connect']);
3399
+    }
3400
+
3401
+    $texte = '';
3402
+    $pages = [];
3403
+    $lang_select = '';
3404
+    if (!isset($options['etoile']) or !$options['etoile']) {
3405
+        // Si on a inclus sans fixer le critere de lang, on prend la langue courante
3406
+        if (!isset($contexte['lang'])) {
3407
+            $contexte['lang'] = $GLOBALS['spip_lang'];
3408
+        }
3409
+
3410
+        if ($contexte['lang'] != $GLOBALS['meta']['langue_site']) {
3411
+            $lang_select = lang_select($contexte['lang']);
3412
+        }
3413
+    }
3414
+
3415
+    if (!isset($GLOBALS['_INC_PUBLIC'])) {
3416
+        $GLOBALS['_INC_PUBLIC'] = 0;
3417
+    }
3418
+
3419
+    $GLOBALS['_INC_PUBLIC']++;
3420
+
3421
+    // fix #4235
3422
+    $cache_utilise_session_appelant	= ($GLOBALS['cache_utilise_session'] ?? null);
3423
+
3424
+
3425
+    foreach (is_array($fond) ? $fond : [$fond] as $f) {
3426
+        unset($GLOBALS['cache_utilise_session']);	// fix #4235
3427
+
3428
+        $page = evaluer_fond($f, $contexte, $connect);
3429
+        if ($page === '') {
3430
+            $c = $options['compil'] ?? '';
3431
+            $a = ['fichier' => $f];
3432
+            $erreur = _T('info_erreur_squelette2', $a); // squelette introuvable
3433
+            erreur_squelette($erreur, $c);
3434
+            // eviter des erreurs strictes ensuite sur $page['cle'] en PHP >= 5.4
3435
+            $page = ['texte' => '', 'erreur' => $erreur];
3436
+        }
3437
+
3438
+        $page = pipeline('recuperer_fond', [
3439
+            'args' => ['fond' => $f, 'contexte' => $contexte, 'options' => $options, 'connect' => $connect],
3440
+            'data' => $page
3441
+        ]);
3442
+        if (isset($options['ajax']) and $options['ajax']) {
3443
+            if (!function_exists('encoder_contexte_ajax')) {
3444
+                include_spip('inc/filtres');
3445
+            }
3446
+            $page['texte'] = encoder_contexte_ajax(
3447
+                array_merge(
3448
+                    $contexte,
3449
+                    ['fond' => $f],
3450
+                    ($connect ? ['connect' => $connect] : [])
3451
+                ),
3452
+                '',
3453
+                $page['texte'],
3454
+                $options['ajax']
3455
+            );
3456
+        }
3457
+
3458
+        if (isset($options['raw']) and $options['raw']) {
3459
+            $pages[] = $page;
3460
+        } else {
3461
+            $texte .= $options['trim'] ? rtrim($page['texte'] ?? '') : $page['texte'];
3462
+        }
3463
+
3464
+        // contamination de la session appelante, pour les inclusions statiques
3465
+        if (isset($page['invalideurs']['session'])) {
3466
+            $cache_utilise_session_appelant = $page['invalideurs']['session'];
3467
+        }
3468
+    }
3469
+
3470
+    // restaurer le sessionnement du contexte appelant,
3471
+    // éventuellement contaminé si on vient de récupérer une inclusion statique sessionnée
3472
+    if (isset($cache_utilise_session_appelant)) {
3473
+        $GLOBALS['cache_utilise_session'] = $cache_utilise_session_appelant;
3474
+    }
3475
+
3476
+    $GLOBALS['_INC_PUBLIC']--;
3477
+
3478
+    if ($lang_select) {
3479
+        lang_select();
3480
+    }
3481
+    if (isset($options['raw']) and $options['raw']) {
3482
+        return is_array($fond) ? $pages : reset($pages);
3483
+    } else {
3484
+        return $options['trim'] ? ltrim($texte) : $texte;
3485
+    }
3487 3486
 }
3488 3487
 
3489 3488
 /**
@@ -3493,7 +3492,7 @@  discard block
 block discarded – undo
3493 3492
  * @return string
3494 3493
  */
3495 3494
 function trouve_modele($nom) {
3496
-	return trouver_fond($nom, 'modeles/');
3495
+    return trouver_fond($nom, 'modeles/');
3497 3496
 }
3498 3497
 
3499 3498
 /**
@@ -3509,21 +3508,21 @@  discard block
 block discarded – undo
3509 3508
  * @return array|string
3510 3509
  */
3511 3510
 function trouver_fond($nom, $dir = '', $pathinfo = false) {
3512
-	$f = find_in_path($nom . '.' . _EXTENSION_SQUELETTES, $dir ? rtrim($dir, '/') . '/' : '');
3513
-	if (!$pathinfo) {
3514
-		return $f;
3515
-	}
3516
-	// renvoyer un tableau detaille si $pathinfo==true
3517
-	$p = pathinfo($f);
3518
-	if (!isset($p['extension']) or !$p['extension']) {
3519
-		$p['extension'] = _EXTENSION_SQUELETTES;
3520
-	}
3521
-	if (!isset($p['extension']) or !$p['filename']) {
3522
-		$p['filename'] = ($p['basename'] ? substr($p['basename'], 0, -strlen($p['extension']) - 1) : '');
3523
-	}
3524
-	$p['fond'] = ($f ? substr($f, 0, -strlen($p['extension']) - 1) : '');
3511
+    $f = find_in_path($nom . '.' . _EXTENSION_SQUELETTES, $dir ? rtrim($dir, '/') . '/' : '');
3512
+    if (!$pathinfo) {
3513
+        return $f;
3514
+    }
3515
+    // renvoyer un tableau detaille si $pathinfo==true
3516
+    $p = pathinfo($f);
3517
+    if (!isset($p['extension']) or !$p['extension']) {
3518
+        $p['extension'] = _EXTENSION_SQUELETTES;
3519
+    }
3520
+    if (!isset($p['extension']) or !$p['filename']) {
3521
+        $p['filename'] = ($p['basename'] ? substr($p['basename'], 0, -strlen($p['extension']) - 1) : '');
3522
+    }
3523
+    $p['fond'] = ($f ? substr($f, 0, -strlen($p['extension']) - 1) : '');
3525 3524
 
3526
-	return $p;
3525
+    return $p;
3527 3526
 }
3528 3527
 
3529 3528
 /**
@@ -3543,21 +3542,21 @@  discard block
 block discarded – undo
3543 3542
  *     Nom de l'exec, sinon chaîne vide.
3544 3543
  **/
3545 3544
 function tester_url_ecrire($nom) {
3546
-	static $exec = [];
3547
-	if (isset($exec[$nom])) {
3548
-		return $exec[$nom];
3549
-	}
3550
-	// tester si c'est une page en squelette
3551
-	if (trouver_fond($nom, 'prive/squelettes/contenu/')) {
3552
-		return $exec[$nom] = 'fond';
3553
-	} // echafaudage d'un fond !
3554
-	elseif (include_spip('public/styliser_par_z') and z_echafaudable($nom)) {
3555
-		return $exec[$nom] = 'fond';
3556
-	}
3557
-	// attention, il ne faut pas inclure l'exec ici
3558
-	// car sinon #URL_ECRIRE provoque des inclusions
3559
-	// et des define intrusifs potentiels
3560
-	return $exec[$nom] = ((find_in_path("{$nom}.php", 'exec/') or charger_fonction($nom, 'exec', true)) ? $nom : '');
3545
+    static $exec = [];
3546
+    if (isset($exec[$nom])) {
3547
+        return $exec[$nom];
3548
+    }
3549
+    // tester si c'est une page en squelette
3550
+    if (trouver_fond($nom, 'prive/squelettes/contenu/')) {
3551
+        return $exec[$nom] = 'fond';
3552
+    } // echafaudage d'un fond !
3553
+    elseif (include_spip('public/styliser_par_z') and z_echafaudable($nom)) {
3554
+        return $exec[$nom] = 'fond';
3555
+    }
3556
+    // attention, il ne faut pas inclure l'exec ici
3557
+    // car sinon #URL_ECRIRE provoque des inclusions
3558
+    // et des define intrusifs potentiels
3559
+    return $exec[$nom] = ((find_in_path("{$nom}.php", 'exec/') or charger_fonction($nom, 'exec', true)) ? $nom : '');
3561 3560
 }
3562 3561
 
3563 3562
 /**
@@ -3567,8 +3566,8 @@  discard block
 block discarded – undo
3567 3566
  *     true si la constante _VERSION_HTML n'est pas définie ou égale à html5
3568 3567
  **/
3569 3568
 function html5_permis() {
3570
-	return (!defined('_VERSION_HTML')
3571
-		or _VERSION_HTML !== 'html4');
3569
+    return (!defined('_VERSION_HTML')
3570
+        or _VERSION_HTML !== 'html4');
3572 3571
 }
3573 3572
 
3574 3573
 /**
@@ -3578,30 +3577,30 @@  discard block
 block discarded – undo
3578 3577
  * @return array
3579 3578
  */
3580 3579
 function formats_image_acceptables($gd = null, $svg_allowed = true) {
3581
-	$formats = null;
3582
-	if (!is_null($gd)) {
3583
-		$config = ($gd ? 'gd_formats' : 'formats_graphiques');
3584
-		if (isset($GLOBALS['meta'][$config])) {
3585
-			$formats = $GLOBALS['meta'][$config];
3586
-			$formats = explode(',', $formats);
3587
-			$formats = array_filter($formats);
3588
-			$formats = array_map('trim', $formats);
3589
-		}
3590
-	}
3591
-	if (is_null($formats)) {
3592
-		include_spip('inc/filtres_images_lib_mini');
3593
-		$formats = _image_extensions_acceptees_en_entree();
3594
-	}
3595
-
3596
-	if ($svg_allowed) {
3597
-		if (!in_array('svg', $formats)) {
3598
-			$formats[] = 'svg';
3599
-		}
3600
-	}
3601
-	else {
3602
-		$formats = array_diff($formats, ['svg']);
3603
-	}
3604
-	return $formats;
3580
+    $formats = null;
3581
+    if (!is_null($gd)) {
3582
+        $config = ($gd ? 'gd_formats' : 'formats_graphiques');
3583
+        if (isset($GLOBALS['meta'][$config])) {
3584
+            $formats = $GLOBALS['meta'][$config];
3585
+            $formats = explode(',', $formats);
3586
+            $formats = array_filter($formats);
3587
+            $formats = array_map('trim', $formats);
3588
+        }
3589
+    }
3590
+    if (is_null($formats)) {
3591
+        include_spip('inc/filtres_images_lib_mini');
3592
+        $formats = _image_extensions_acceptees_en_entree();
3593
+    }
3594
+
3595
+    if ($svg_allowed) {
3596
+        if (!in_array('svg', $formats)) {
3597
+            $formats[] = 'svg';
3598
+        }
3599
+    }
3600
+    else {
3601
+        $formats = array_diff($formats, ['svg']);
3602
+    }
3603
+    return $formats;
3605 3604
 }
3606 3605
 
3607 3606
 /**
@@ -3610,20 +3609,20 @@  discard block
 block discarded – undo
3610 3609
  * @return array|bool
3611 3610
  */
3612 3611
 function spip_getimagesize($fichier) {
3613
-	if (!$imagesize = @getimagesize($fichier)) {
3614
-		include_spip('inc/svg');
3615
-		if ($attrs = svg_lire_attributs($fichier)) {
3616
-			[$width, $height, $viewbox] = svg_getimagesize_from_attr($attrs);
3617
-			$imagesize = [
3618
-				$width,
3619
-				$height,
3620
-				IMAGETYPE_SVG,
3621
-				"width=\"{$width}\" height=\"{$height}\"",
3622
-				'mime' => 'image/svg+xml'
3623
-			];
3624
-		}
3625
-	}
3626
-	return $imagesize;
3612
+    if (!$imagesize = @getimagesize($fichier)) {
3613
+        include_spip('inc/svg');
3614
+        if ($attrs = svg_lire_attributs($fichier)) {
3615
+            [$width, $height, $viewbox] = svg_getimagesize_from_attr($attrs);
3616
+            $imagesize = [
3617
+                $width,
3618
+                $height,
3619
+                IMAGETYPE_SVG,
3620
+                "width=\"{$width}\" height=\"{$height}\"",
3621
+                'mime' => 'image/svg+xml'
3622
+            ];
3623
+        }
3624
+    }
3625
+    return $imagesize;
3627 3626
 }
3628 3627
 
3629 3628
 /**
@@ -3637,19 +3636,19 @@  discard block
 block discarded – undo
3637 3636
  * @param string $statut
3638 3637
  */
3639 3638
 function avertir_auteurs($nom, $message, $statut = '') {
3640
-	$alertes = $GLOBALS['meta']['message_alertes_auteurs'];
3641
-	if (
3642
-		!$alertes
3643
-		or !is_array($alertes = unserialize($alertes))
3644
-	) {
3645
-		$alertes = [];
3646
-	}
3639
+    $alertes = $GLOBALS['meta']['message_alertes_auteurs'];
3640
+    if (
3641
+        !$alertes
3642
+        or !is_array($alertes = unserialize($alertes))
3643
+    ) {
3644
+        $alertes = [];
3645
+    }
3647 3646
 
3648
-	if (!isset($alertes[$statut])) {
3649
-		$alertes[$statut] = [];
3650
-	}
3651
-	$alertes[$statut][$nom] = $message;
3652
-	ecrire_meta('message_alertes_auteurs', serialize($alertes));
3647
+    if (!isset($alertes[$statut])) {
3648
+        $alertes[$statut] = [];
3649
+    }
3650
+    $alertes[$statut][$nom] = $message;
3651
+    ecrire_meta('message_alertes_auteurs', serialize($alertes));
3653 3652
 }
3654 3653
 
3655 3654
 /**
@@ -3663,10 +3662,10 @@  discard block
 block discarded – undo
3663 3662
  * @return string|string[]
3664 3663
  */
3665 3664
 function spip_sanitize_classname($classes) {
3666
-	if (is_array($classes)) {
3667
-		return array_map('spip_sanitize_classname', $classes);
3668
-	}
3669
-	return preg_replace('/[^ 0-9a-z_\-+@]/i', '', $classes);
3665
+    if (is_array($classes)) {
3666
+        return array_map('spip_sanitize_classname', $classes);
3667
+    }
3668
+    return preg_replace('/[^ 0-9a-z_\-+@]/i', '', $classes);
3670 3669
 }
3671 3670
 
3672 3671
 
@@ -3691,32 +3690,32 @@  discard block
 block discarded – undo
3691 3690
  *    Avec operateur : bool.
3692 3691
  **/
3693 3692
 function spip_version_compare($v1, $v2, $op = null) {
3694
-	$v1 = strtolower(preg_replace(',([0-9])[\s.-]?(dev|alpha|a|beta|b|rc|pl|p),i', '\\1.\\2', $v1));
3695
-	$v2 = strtolower(preg_replace(',([0-9])[\s.-]?(dev|alpha|a|beta|b|rc|pl|p),i', '\\1.\\2', $v2));
3696
-	$v1 = str_replace('rc', 'RC', $v1); // certaines versions de PHP ne comprennent RC qu'en majuscule
3697
-	$v2 = str_replace('rc', 'RC', $v2); // certaines versions de PHP ne comprennent RC qu'en majuscule
3698
-
3699
-	$v1 = explode('.', $v1);
3700
-	$v2 = explode('.', $v2);
3701
-	// $v1 est toujours une version, donc sans etoile
3702
-	while (count($v1) < count($v2)) {
3703
-		$v1[] = '0';
3704
-	}
3705
-
3706
-	// $v2 peut etre une borne, donc accepte l'etoile
3707
-	$etoile = false;
3708
-	foreach ($v1 as $k => $v) {
3709
-		if (!isset($v2[$k])) {
3710
-			$v2[] = ($etoile and (is_numeric($v) or $v == 'pl' or $v == 'p')) ? $v : '0';
3711
-		} else {
3712
-			if ($v2[$k] == '*') {
3713
-				$etoile = true;
3714
-				$v2[$k] = $v;
3715
-			}
3716
-		}
3717
-	}
3718
-	$v1 = implode('.', $v1);
3719
-	$v2 = implode('.', $v2);
3720
-
3721
-	return $op ? version_compare($v1, $v2, $op) : version_compare($v1, $v2);
3693
+    $v1 = strtolower(preg_replace(',([0-9])[\s.-]?(dev|alpha|a|beta|b|rc|pl|p),i', '\\1.\\2', $v1));
3694
+    $v2 = strtolower(preg_replace(',([0-9])[\s.-]?(dev|alpha|a|beta|b|rc|pl|p),i', '\\1.\\2', $v2));
3695
+    $v1 = str_replace('rc', 'RC', $v1); // certaines versions de PHP ne comprennent RC qu'en majuscule
3696
+    $v2 = str_replace('rc', 'RC', $v2); // certaines versions de PHP ne comprennent RC qu'en majuscule
3697
+
3698
+    $v1 = explode('.', $v1);
3699
+    $v2 = explode('.', $v2);
3700
+    // $v1 est toujours une version, donc sans etoile
3701
+    while (count($v1) < count($v2)) {
3702
+        $v1[] = '0';
3703
+    }
3704
+
3705
+    // $v2 peut etre une borne, donc accepte l'etoile
3706
+    $etoile = false;
3707
+    foreach ($v1 as $k => $v) {
3708
+        if (!isset($v2[$k])) {
3709
+            $v2[] = ($etoile and (is_numeric($v) or $v == 'pl' or $v == 'p')) ? $v : '0';
3710
+        } else {
3711
+            if ($v2[$k] == '*') {
3712
+                $etoile = true;
3713
+                $v2[$k] = $v;
3714
+            }
3715
+        }
3716
+    }
3717
+    $v1 = implode('.', $v1);
3718
+    $v2 = implode('.', $v2);
3719
+
3720
+    return $op ? version_compare($v1, $v2, $op) : version_compare($v1, $v2);
3722 3721
 }
Please login to merge, or discard this patch.
Spacing   +123 added lines, -124 removed lines patch added patch discarded remove patch
@@ -53,12 +53,12 @@  discard block
 block discarded – undo
53 53
 	if (strlen($dossier) and substr($dossier, -1) != '/') {
54 54
 		$dossier .= '/';
55 55
 	}
56
-	$f = str_replace('/', '_', $dossier) . $nom;
56
+	$f = str_replace('/', '_', $dossier).$nom;
57 57
 
58 58
 	if (function_exists($f)) {
59 59
 		return $f;
60 60
 	}
61
-	if (function_exists($g = $f . '_dist')) {
61
+	if (function_exists($g = $f.'_dist')) {
62 62
 		return $g;
63 63
 	}
64 64
 
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 	// passer en minuscules (cf les balises de formulaires)
80 80
 	// et inclure le fichier
81 81
 	if (
82
-		!$inc = include_spip($dossier . ($d = strtolower($nom)))
82
+		!$inc = include_spip($dossier.($d = strtolower($nom)))
83 83
 		// si le fichier truc/machin/nom.php n'existe pas,
84 84
 		// la fonction peut etre definie dans truc/machin.php qui regroupe plusieurs petites fonctions
85 85
 		and strlen(dirname($dossier)) and dirname($dossier) != '.'
@@ -98,19 +98,19 @@  discard block
 block discarded – undo
98 98
 	}
99 99
 
100 100
 	// Echec : message d'erreur
101
-	spip_log("fonction $nom ($f ou $g) indisponible" .
101
+	spip_log("fonction $nom ($f ou $g) indisponible".
102 102
 		($inc ? '' : " (fichier $d absent de $dossier)"));
103 103
 
104 104
 	include_spip('inc/minipres');
105 105
 	echo minipres(
106 106
 		_T('forum_titre_erreur'),
107 107
 		$inc ?
108
-			_T('fonction_introuvable', ['fonction' => '<code>' . spip_htmlentities($f) . '</code>'])
108
+			_T('fonction_introuvable', ['fonction' => '<code>'.spip_htmlentities($f).'</code>'])
109 109
 			. '<br />'
110
-			. _T('fonction_introuvable', ['fonction' => '<code>' . spip_htmlentities($g) . '</code>'])
110
+			. _T('fonction_introuvable', ['fonction' => '<code>'.spip_htmlentities($g).'</code>'])
111 111
 			:
112
-			_T('fichier_introuvable', ['fichier' => '<code>' . spip_htmlentities($d) . '</code>']),
113
-		['all_inline' => true,'status' => 404]
112
+			_T('fichier_introuvable', ['fichier' => '<code>'.spip_htmlentities($d).'</code>']),
113
+		['all_inline' => true, 'status' => 404]
114 114
 	);
115 115
 	exit;
116 116
 }
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
  *     - string : chemin du fichier trouvé
157 157
  **/
158 158
 function include_spip($f, $include = true) {
159
-	return find_in_path($f . '.php', '', $include);
159
+	return find_in_path($f.'.php', '', $include);
160 160
 }
161 161
 
162 162
 /**
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
  *     - string : chemin du fichier trouvé
177 177
  **/
178 178
 function require_spip($f) {
179
-	return find_in_path($f . '.php', '', 'required');
179
+	return find_in_path($f.'.php', '', 'required');
180 180
 }
181 181
 
182 182
 
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
 		// donc il faut l'inclure "en globals"
194 194
 		if ($f = find_in_path('mes_fonctions.php')) {
195 195
 			global $dossier_squelettes;
196
-			include_once(_ROOT_CWD . $f);
196
+			include_once(_ROOT_CWD.$f);
197 197
 		}
198 198
 
199 199
 		if (@is_readable(_CACHE_PLUGINS_FCT)) {
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
 	}
299 299
 
300 300
 	// appliquer notre fonction si elle existe
301
-	$fonc = 'execute_pipeline_' . strtolower($action);
301
+	$fonc = 'execute_pipeline_'.strtolower($action);
302 302
 	if (function_exists($fonc)) {
303 303
 		$val = $fonc($val);
304 304
 	} // plantage ?
@@ -363,7 +363,7 @@  discard block
 block discarded – undo
363 363
 function spip_log($message = null, $name = null) {
364 364
 	static $pre = [];
365 365
 	static $log;
366
-	preg_match('/^([a-z_]*)\.?(\d)?$/iS', (string)$name, $regs);
366
+	preg_match('/^([a-z_]*)\.?(\d)?$/iS', (string) $name, $regs);
367 367
 	if (!isset($regs[1]) or !$logname = $regs[1]) {
368 368
 		$logname = null;
369 369
 	}
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
 		if (!is_string($message)) {
392 392
 			$message = print_r($message, true);
393 393
 		}
394
-		$log($pre[$niveau] . ' ' . $message, $logname);
394
+		$log($pre[$niveau].' '.$message, $logname);
395 395
 	}
396 396
 }
397 397
 
@@ -592,7 +592,7 @@  discard block
 block discarded – undo
592 592
 		$a = './';
593 593
 	}
594 594
 
595
-	$regexp = ',^(' . str_replace('[]', '\[\]', $c) . '[[]?[]]?)(=.*)?$,';
595
+	$regexp = ',^('.str_replace('[]', '\[\]', $c).'[[]?[]]?)(=.*)?$,';
596 596
 	$ajouts = array_flip(explode('|', $c));
597 597
 	$u = is_array($v) ? $v : rawurlencode((string) $v);
598 598
 	$testv = (is_array($v) ? count($v) : strlen((string) $v));
@@ -619,7 +619,7 @@  discard block
 block discarded – undo
619 619
 			// Ajout. Pour une variable, remplacer au meme endroit,
620 620
 			// pour un tableau ce sera fait dans la prochaine boucle
621 621
 			elseif (substr($r[1], -2) != '[]') {
622
-				$url[$n] = $r[1] . '=' . $u;
622
+				$url[$n] = $r[1].'='.$u;
623 623
 				unset($ajouts[$r[1]]);
624 624
 			}
625 625
 			// Pour les tableaux on laisse tomber les valeurs de
@@ -640,11 +640,11 @@  discard block
 block discarded – undo
640 640
 	} elseif ($testv) {
641 641
 		foreach ($ajouts as $k => $n) {
642 642
 			if (!is_array($v)) {
643
-				$url[] = $k . '=' . $u;
643
+				$url[] = $k.'='.$u;
644 644
 			} else {
645
-				$id = (substr($k, -2) == '[]') ? $k : ($k . '[]');
645
+				$id = (substr($k, -2) == '[]') ? $k : ($k.'[]');
646 646
 				foreach ($v as $w) {
647
-					$url[] = $id . '=' . (is_array($w) ? 'Array' : rawurlencode($w));
647
+					$url[] = $id.'='.(is_array($w) ? 'Array' : rawurlencode($w));
648 648
 				}
649 649
 			}
650 650
 		}
@@ -655,10 +655,10 @@  discard block
 block discarded – undo
655 655
 
656 656
 	// recomposer l'adresse
657 657
 	if ($url) {
658
-		$a .= '?' . join($sep, $url);
658
+		$a .= '?'.join($sep, $url);
659 659
 	}
660 660
 
661
-	return $a . $ancre;
661
+	return $a.$ancre;
662 662
 }
663 663
 
664 664
 /**
@@ -690,7 +690,7 @@  discard block
 block discarded – undo
690 690
 			translitteration($ancre)
691 691
 		);
692 692
 	}
693
-	return $url . (strlen($ancre) ? '#' . $ancre : '');
693
+	return $url.(strlen($ancre) ? '#'.$ancre : '');
694 694
 }
695 695
 
696 696
 /**
@@ -806,7 +806,7 @@  discard block
 block discarded – undo
806 806
  * @return bool
807 807
  */
808 808
 function test_plugin_actif($plugin) {
809
-	return ($plugin and defined('_DIR_PLUGIN_' . strtoupper($plugin))) ? true : false;
809
+	return ($plugin and defined('_DIR_PLUGIN_'.strtoupper($plugin))) ? true : false;
810 810
 }
811 811
 
812 812
 /**
@@ -938,7 +938,7 @@  discard block
 block discarded – undo
938 938
 					$value = interdire_scripts($value, -1);
939 939
 				}
940 940
 				if (!empty($options['class'])) {
941
-					$value = "<span class='" . $options['class'] . "'>$value</span>";
941
+					$value = "<span class='".$options['class']."'>$value</span>";
942 942
 				}
943 943
 				$text = str_replace("@$name@", $value, $text);
944 944
 				unset($args[$name]);
@@ -947,7 +947,7 @@  discard block
 block discarded – undo
947 947
 		// Si des variables n'ont pas ete inserees, le signaler
948 948
 		// (chaines de langues pas a jour)
949 949
 		if ($args) {
950
-			spip_log("$f:  variables inutilisees " . join(', ', array_keys($args)), _LOG_DEBUG);
950
+			spip_log("$f:  variables inutilisees ".join(', ', array_keys($args)), _LOG_DEBUG);
951 951
 		}
952 952
 	}
953 953
 
@@ -971,7 +971,7 @@  discard block
 block discarded – undo
971 971
 function joli_repertoire($rep) {
972 972
 	$a = substr($rep, 0, 1);
973 973
 	if ($a <> '.' and $a <> '/') {
974
-		$rep = (_DIR_RESTREINT ? '' : _DIR_RESTREINT_ABS) . $rep;
974
+		$rep = (_DIR_RESTREINT ? '' : _DIR_RESTREINT_ABS).$rep;
975 975
 	}
976 976
 	$rep = preg_replace(',(^\.\.\/),', '', $rep);
977 977
 
@@ -1025,7 +1025,7 @@  discard block
 block discarded – undo
1025 1025
 			$p -= ($x * 1000);
1026 1026
 		}
1027 1027
 
1028
-		return $s . sprintf($s ? '%07.3f ms' : '%.3f ms', $p);
1028
+		return $s.sprintf($s ? '%07.3f ms' : '%.3f ms', $p);
1029 1029
 	}
1030 1030
 }
1031 1031
 
@@ -1092,7 +1092,7 @@  discard block
 block discarded – undo
1092 1092
 	if ($taches and count($taches) and !spip_connect()) {
1093 1093
 		return false;
1094 1094
 	}
1095
-	spip_log('cron !', 'jq' . _LOG_DEBUG);
1095
+	spip_log('cron !', 'jq'._LOG_DEBUG);
1096 1096
 	if ($genie = charger_fonction('genie', 'inc', true)) {
1097 1097
 		return $genie($taches);
1098 1098
 	}
@@ -1196,7 +1196,7 @@  discard block
 block discarded – undo
1196 1196
 
1197 1197
 	if ($queue_next_job_time == -1) {
1198 1198
 		if (!defined('_JQ_NEXT_JOB_TIME_FILENAME')) {
1199
-			define('_JQ_NEXT_JOB_TIME_FILENAME', _DIR_TMP . 'job_queue_next.txt');
1199
+			define('_JQ_NEXT_JOB_TIME_FILENAME', _DIR_TMP.'job_queue_next.txt');
1200 1200
 		}
1201 1201
 		// utiliser un cache memoire si dispo
1202 1202
 		if (function_exists('cache_get') and defined('_MEMOIZE_MEMORY') and _MEMOIZE_MEMORY) {
@@ -1265,8 +1265,8 @@  discard block
 block discarded – undo
1265 1265
 		$src = '';
1266 1266
 	}
1267 1267
 	if ($script) {
1268
-		$script = ("/*<![CDATA[*/\n" .
1269
-			preg_replace(',</([^>]*)>,', '<\/\1>', $script) .
1268
+		$script = ("/*<![CDATA[*/\n".
1269
+			preg_replace(',</([^>]*)>,', '<\/\1>', $script).
1270 1270
 			'/*]]>*/');
1271 1271
 	}
1272 1272
 	if ($noscript) {
@@ -1352,13 +1352,13 @@  discard block
 block discarded – undo
1352 1352
 	if ($path_base == null) {
1353 1353
 		// Chemin standard depuis l'espace public
1354 1354
 		$path = defined('_SPIP_PATH') ? _SPIP_PATH :
1355
-			_DIR_RACINE . ':' .
1356
-			_DIR_RACINE . 'squelettes-dist/:' .
1357
-			_DIR_RACINE . 'prive/:' .
1355
+			_DIR_RACINE.':'.
1356
+			_DIR_RACINE.'squelettes-dist/:'.
1357
+			_DIR_RACINE.'prive/:'.
1358 1358
 			_DIR_RESTREINT;
1359 1359
 		// Ajouter squelettes/
1360
-		if (@is_dir(_DIR_RACINE . 'squelettes')) {
1361
-			$path = _DIR_RACINE . 'squelettes/:' . $path;
1360
+		if (@is_dir(_DIR_RACINE.'squelettes')) {
1361
+			$path = _DIR_RACINE.'squelettes/:'.$path;
1362 1362
 		}
1363 1363
 		foreach (explode(':', $path) as $dir) {
1364 1364
 			if (strlen($dir) and substr($dir, -1) != '/') {
@@ -1370,7 +1370,7 @@  discard block
 block discarded – undo
1370 1370
 		// Et le(s) dossier(s) des squelettes nommes
1371 1371
 		if (strlen($GLOBALS['dossier_squelettes'])) {
1372 1372
 			foreach (array_reverse(explode(':', $GLOBALS['dossier_squelettes'])) as $d) {
1373
-				array_unshift($path_full, ($d[0] == '/' ? '' : _DIR_RACINE) . $d . '/');
1373
+				array_unshift($path_full, ($d[0] == '/' ? '' : _DIR_RACINE).$d.'/');
1374 1374
 			}
1375 1375
 		}
1376 1376
 		$GLOBALS['path_sig'] = md5(serialize($path_full));
@@ -1381,7 +1381,7 @@  discard block
 block discarded – undo
1381 1381
 
1382 1382
 	if (is_array($dir_path) or strlen($dir_path)) {
1383 1383
 		$tete = '';
1384
-		if (reset($path_base) == _DIR_RACINE . 'squelettes/') {
1384
+		if (reset($path_base) == _DIR_RACINE.'squelettes/') {
1385 1385
 			$tete = array_shift($path_base);
1386 1386
 		}
1387 1387
 		$dirs = (is_array($dir_path) ? $dir_path : explode(':', $dir_path));
@@ -1402,7 +1402,7 @@  discard block
 block discarded – undo
1402 1402
 	// Et le(s) dossier(s) des squelettes nommes
1403 1403
 	if (strlen($GLOBALS['dossier_squelettes'])) {
1404 1404
 		foreach (array_reverse(explode(':', $GLOBALS['dossier_squelettes'])) as $d) {
1405
-			array_unshift($path_full, ((isset($d[0]) and $d[0] == '/') ? '' : _DIR_RACINE) . $d . '/');
1405
+			array_unshift($path_full, ((isset($d[0]) and $d[0] == '/') ? '' : _DIR_RACINE).$d.'/');
1406 1406
 		}
1407 1407
 	}
1408 1408
 
@@ -1473,14 +1473,14 @@  discard block
 block discarded – undo
1473 1473
 	// si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png
1474 1474
 	if (
1475 1475
 		preg_match(',-(\d+)[.](png|gif|svg)$,', $file, $m)
1476
-		and $file_svg_generique = substr($file, 0, -strlen($m[0])) . '-xx.svg'
1476
+		and $file_svg_generique = substr($file, 0, -strlen($m[0])).'-xx.svg'
1477 1477
 		and $f = find_in_theme("$file_svg_generique")
1478 1478
 	) {
1479
-		if ($fsize = substr($f, 0, -6) . $m[1] . '.svg' and file_exists($fsize)) {
1479
+		if ($fsize = substr($f, 0, -6).$m[1].'.svg' and file_exists($fsize)) {
1480 1480
 			return $themefiles["$subdir$file"] = $fsize;
1481 1481
 		}
1482 1482
 		else {
1483
-			return $themefiles["$subdir$file"] = "$f?" . $m[1] . 'px';
1483
+			return $themefiles["$subdir$file"] = "$f?".$m[1].'px';
1484 1484
 		}
1485 1485
 	}
1486 1486
 
@@ -1490,7 +1490,7 @@  discard block
 block discarded – undo
1490 1490
 			return $themefiles["$subdir$file"] = $f;
1491 1491
 		}
1492 1492
 	}
1493
-	spip_log("$file introuvable dans le theme prive " . reset($themes), 'theme');
1493
+	spip_log("$file introuvable dans le theme prive ".reset($themes), 'theme');
1494 1494
 
1495 1495
 	return $themefiles["$subdir$file"] = '';
1496 1496
 }
@@ -1598,8 +1598,8 @@  discard block
 block discarded – undo
1598 1598
 			return false;
1599 1599
 		}
1600 1600
 		if ($include and !isset($inc[$dirname][$file])) {
1601
-			include_once _ROOT_CWD . $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file];
1602
-			$inc[$dirname][$file] = $inc[''][$dirname . $file] = true;
1601
+			include_once _ROOT_CWD.$GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file];
1602
+			$inc[$dirname][$file] = $inc[''][$dirname.$file] = true;
1603 1603
 		}
1604 1604
 
1605 1605
 		return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file];
@@ -1612,14 +1612,14 @@  discard block
 block discarded – undo
1612 1612
 	}
1613 1613
 
1614 1614
 	foreach (creer_chemin() as $dir) {
1615
-		if (!isset($dirs[$a = $dir . $dirname])) {
1616
-			$dirs[$a] = (is_dir(_ROOT_CWD . $a) || !$a);
1615
+		if (!isset($dirs[$a = $dir.$dirname])) {
1616
+			$dirs[$a] = (is_dir(_ROOT_CWD.$a) || !$a);
1617 1617
 		}
1618 1618
 		if ($dirs[$a]) {
1619
-			if (file_exists(_ROOT_CWD . ($a .= $file))) {
1619
+			if (file_exists(_ROOT_CWD.($a .= $file))) {
1620 1620
 				if ($include and !isset($inc[$dirname][$file])) {
1621
-					include_once _ROOT_CWD . $a;
1622
-					$inc[$dirname][$file] = $inc[''][$dirname . $file] = true;
1621
+					include_once _ROOT_CWD.$a;
1622
+					$inc[$dirname][$file] = $inc[''][$dirname.$file] = true;
1623 1623
 				}
1624 1624
 				if (!defined('_SAUVER_CHEMIN')) {
1625 1625
 					// si le chemin n'a pas encore ete charge, ne pas lever le flag, ne pas cacher
@@ -1629,7 +1629,7 @@  discard block
 block discarded – undo
1629 1629
 					define('_SAUVER_CHEMIN', true);
1630 1630
 				}
1631 1631
 
1632
-				return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file] = $GLOBALS['path_files'][$GLOBALS['path_sig']][''][$dirname . $file] = $a;
1632
+				return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file] = $GLOBALS['path_files'][$GLOBALS['path_sig']][''][$dirname.$file] = $a;
1633 1633
 			}
1634 1634
 		}
1635 1635
 	}
@@ -1655,7 +1655,7 @@  discard block
 block discarded – undo
1655 1655
 		define('_SAUVER_CHEMIN', true);
1656 1656
 	}
1657 1657
 
1658
-	return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file] = $GLOBALS['path_files'][$GLOBALS['path_sig']][''][$dirname . $file] = false;
1658
+	return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file] = $GLOBALS['path_files'][$GLOBALS['path_sig']][''][$dirname.$file] = false;
1659 1659
 }
1660 1660
 
1661 1661
 function clear_path_cache() {
@@ -1725,12 +1725,12 @@  discard block
 block discarded – undo
1725 1725
 	// cas borderline si dans mes_options on appelle redirige_par_entete qui utilise _T et charge un fichier de langue
1726 1726
 	// on a pas encore inclus flock.php
1727 1727
 	if (!function_exists('preg_files')) {
1728
-		include_once _ROOT_RESTREINT . 'inc/flock.php';
1728
+		include_once _ROOT_RESTREINT.'inc/flock.php';
1729 1729
 	}
1730 1730
 
1731 1731
 	// Parcourir le chemin
1732 1732
 	foreach (creer_chemin() as $d) {
1733
-		$f = $d . $dir;
1733
+		$f = $d.$dir;
1734 1734
 		if (@is_dir($f)) {
1735 1735
 			$liste = preg_files($f, $pattern, $maxfiles - count($liste_fichiers), $recurs === true ? [] : $recurs);
1736 1736
 			foreach ($liste as $chemin) {
@@ -1780,9 +1780,9 @@  discard block
 block discarded – undo
1780 1780
 	if ($type === 'defaut') {
1781 1781
 		$objet = objet_type($quoi);
1782 1782
 		if (
1783
-			$f = charger_fonction('generer_' . $objet . '_url', 'urls', true)
1783
+			$f = charger_fonction('generer_'.$objet.'_url', 'urls', true)
1784 1784
 			// deprecated
1785
-			or $f = charger_fonction('generer_url_' . $objet, 'urls', true)
1785
+			or $f = charger_fonction('generer_url_'.$objet, 'urls', true)
1786 1786
 		) {
1787 1787
 			return $f;
1788 1788
 		}
@@ -1795,7 +1795,7 @@  discard block
 block discarded – undo
1795 1795
 	}
1796 1796
 
1797 1797
 	// inclure le module d'url
1798
-	include_spip('urls/' . $url_type);
1798
+	include_spip('urls/'.$url_type);
1799 1799
 
1800 1800
 	switch ($quoi) {
1801 1801
 		case 'page':
@@ -1826,7 +1826,7 @@  discard block
 block discarded – undo
1826 1826
 				return $f;
1827 1827
 			}
1828 1828
 			// sinon on se rabat sur les urls page si ce n'est pas un type demande explicitement
1829
-			if (!$type and $url_type !== 'page'){
1829
+			if (!$type and $url_type !== 'page') {
1830 1830
 				return charger_fonction_url($quoi, 'page');
1831 1831
 			}
1832 1832
 			return '';
@@ -1951,8 +1951,8 @@  discard block
 block discarded – undo
1951 1951
 	include_spip('base/connect_sql');
1952 1952
 	$id_type = id_table_objet($entite, $public);
1953 1953
 
1954
-	return _DIR_RACINE . get_spip_script('./')
1955
-	. '?' . _SPIP_PAGE . "=$entite&$id_type=$i&connect=$public"
1954
+	return _DIR_RACINE.get_spip_script('./')
1955
+	. '?'._SPIP_PAGE."=$entite&$id_type=$i&connect=$public"
1956 1956
 	. (!$args ? '' : "&$args")
1957 1957
 	. (!$ancre ? '' : "#$ancre");
1958 1958
 }
@@ -2123,7 +2123,7 @@  discard block
 block discarded – undo
2123 2123
 				!empty($_SERVER['QUERY_STRING'])
2124 2124
 				and !strpos($_SERVER['REQUEST_URI'], '?')
2125 2125
 			) {
2126
-				$GLOBALS['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING'];
2126
+				$GLOBALS['REQUEST_URI'] .= '?'.$_SERVER['QUERY_STRING'];
2127 2127
 			}
2128 2128
 		}
2129 2129
 	}
@@ -2158,9 +2158,9 @@  discard block
 block discarded – undo
2158 2158
 		array_shift($myself);
2159 2159
 		$myself = implode('/', $myself);
2160 2160
 	}
2161
-	$url = join('/', array_slice(explode('/', $myself), 0, -1 - $prof)) . '/';
2161
+	$url = join('/', array_slice(explode('/', $myself), 0, -1 - $prof)).'/';
2162 2162
 
2163
-	$url = $http . '://' . rtrim($host, '/') . '/' . ltrim($url, '/');
2163
+	$url = $http.'://'.rtrim($host, '/').'/'.ltrim($url, '/');
2164 2164
 
2165 2165
 	return $url;
2166 2166
 }
@@ -2198,16 +2198,16 @@  discard block
 block discarded – undo
2198 2198
  **/
2199 2199
 function generer_url_ecrire($script = '', $args = '', $no_entities = false, $rel = false) {
2200 2200
 	if (!$rel) {
2201
-		$rel = url_de_base() . _DIR_RESTREINT_ABS . _SPIP_ECRIRE_SCRIPT;
2201
+		$rel = url_de_base()._DIR_RESTREINT_ABS._SPIP_ECRIRE_SCRIPT;
2202 2202
 	} else {
2203 2203
 		if (!is_string($rel)) {
2204
-			$rel = _DIR_RESTREINT ?: './' . _SPIP_ECRIRE_SCRIPT;
2204
+			$rel = _DIR_RESTREINT ?: './'._SPIP_ECRIRE_SCRIPT;
2205 2205
 		}
2206 2206
 	}
2207 2207
 
2208 2208
 	[$script, $ancre] = array_pad(explode('#', $script), 2, null);
2209 2209
 	if ($script and ($script <> 'accueil' or $rel)) {
2210
-		$args = "?exec=$script" . (!$args ? '' : "&$args");
2210
+		$args = "?exec=$script".(!$args ? '' : "&$args");
2211 2211
 	} elseif ($args) {
2212 2212
 		$args = "?$args";
2213 2213
 	}
@@ -2215,7 +2215,7 @@  discard block
 block discarded – undo
2215 2215
 		$args .= "#$ancre";
2216 2216
 	}
2217 2217
 
2218
-	return $rel . ($no_entities ? $args : str_replace('&', '&amp;', $args));
2218
+	return $rel.($no_entities ? $args : str_replace('&', '&amp;', $args));
2219 2219
 }
2220 2220
 
2221 2221
 //
@@ -2297,10 +2297,10 @@  discard block
 block discarded – undo
2297 2297
 			$action = parametre_url($action, _SPIP_PAGE, $script, '&');
2298 2298
 		}
2299 2299
 		if ($args) {
2300
-			$action .= (strpos($action, '?') !== false ? '&' : '?') . $args;
2300
+			$action .= (strpos($action, '?') !== false ? '&' : '?').$args;
2301 2301
 		}
2302 2302
 		// ne pas generer une url avec /./?page= en cas d'url absolue et de _SPIP_SCRIPT vide
2303
-		$url = ($rel ? _DIR_RACINE . $action : rtrim(url_de_base(), '/') . preg_replace(',^/[.]/,', '/', "/$action"));
2303
+		$url = ($rel ? _DIR_RACINE . $action : rtrim(url_de_base(), '/').preg_replace(',^/[.]/,', '/', "/$action"));
2304 2304
 	}
2305 2305
 
2306 2306
 	if (!$no_entities) {
@@ -2312,7 +2312,7 @@  discard block
 block discarded – undo
2312 2312
 
2313 2313
 function generer_url_prive($script, $args = '', $no_entities = false) {
2314 2314
 
2315
-	return generer_url_public($script, $args, $no_entities, false, _DIR_RESTREINT_ABS . 'prive.php');
2315
+	return generer_url_public($script, $args, $no_entities, false, _DIR_RESTREINT_ABS.'prive.php');
2316 2316
 }
2317 2317
 
2318 2318
 // Pour les formulaires en methode POST,
@@ -2347,8 +2347,7 @@  discard block
 block discarded – undo
2347 2347
 	. "><div>\n"
2348 2348
 	. "<input type='hidden' name='exec' value='$script1' />"
2349 2349
 	. $corps
2350
-	. (!$submit ? '' :
2351
-		("<div style='text-align: " . $GLOBALS['spip_lang_right'] . "'><input class='fondo submit btn' type='submit' value=\"" . entites_html($submit) . '" /></div>'))
2350
+	. (!$submit ? '' : ("<div style='text-align: ".$GLOBALS['spip_lang_right']."'><input class='fondo submit btn' type='submit' value=\"".entites_html($submit).'" /></div>'))
2352 2351
 	. "</div></form>\n";
2353 2352
 }
2354 2353
 
@@ -2373,14 +2372,14 @@  discard block
 block discarded – undo
2373 2372
 		? generer_url_ecrire(_request('exec'))
2374 2373
 		: generer_url_public();
2375 2374
 
2376
-	return "\n<form action='" .
2377
-	$h .
2378
-	"'" .
2379
-	$atts .
2380
-	">\n" .
2381
-	'<div>' .
2382
-	"\n<input type='hidden' name='action' value='$script' />" .
2383
-	$corps .
2375
+	return "\n<form action='".
2376
+	$h.
2377
+	"'".
2378
+	$atts.
2379
+	">\n".
2380
+	'<div>'.
2381
+	"\n<input type='hidden' name='action' value='$script' />".
2382
+	$corps.
2384 2383
 	'</div></form>';
2385 2384
 }
2386 2385
 
@@ -2408,7 +2407,7 @@  discard block
 block discarded – undo
2408 2407
 		: generer_url_public('', '', false, false);
2409 2408
 	$url = parametre_url($url, 'action', $script);
2410 2409
 	if ($args) {
2411
-		$url .= quote_amp('&' . $args);
2410
+		$url .= quote_amp('&'.$args);
2412 2411
 	}
2413 2412
 
2414 2413
 	if ($no_entities) {
@@ -2442,9 +2441,9 @@  discard block
 block discarded – undo
2442 2441
 	}
2443 2442
 	$url =
2444 2443
 		(($public ? _DIR_RACINE : _DIR_RESTREINT) ?: './')
2445
-	. $script . '/'
2444
+	. $script.'/'
2446 2445
 	. ($path ? trim($path, '/') : '')
2447
-	. ($args ? '?' . quote_amp($args) : '');
2446
+	. ($args ? '?'.quote_amp($args) : '');
2448 2447
 
2449 2448
 	if ($no_entities) {
2450 2449
 		$url = str_replace('&amp;', '&', $url);
@@ -2493,17 +2492,17 @@  discard block
 block discarded – undo
2493 2492
 
2494 2493
 	// le nom du repertoire plugins/ activables/desactivables
2495 2494
 	if (!defined('_DIR_PLUGINS')) {
2496
-		define('_DIR_PLUGINS', _DIR_RACINE . 'plugins/');
2495
+		define('_DIR_PLUGINS', _DIR_RACINE.'plugins/');
2497 2496
 	}
2498 2497
 
2499 2498
 	// le nom du repertoire des extensions/ permanentes du core, toujours actives
2500 2499
 	if (!defined('_DIR_PLUGINS_DIST')) {
2501
-		define('_DIR_PLUGINS_DIST', _DIR_RACINE . 'plugins-dist/');
2500
+		define('_DIR_PLUGINS_DIST', _DIR_RACINE.'plugins-dist/');
2502 2501
 	}
2503 2502
 
2504 2503
 	// le nom du repertoire des librairies
2505 2504
 	if (!defined('_DIR_LIB')) {
2506
-		define('_DIR_LIB', _DIR_RACINE . 'lib/');
2505
+		define('_DIR_LIB', _DIR_RACINE.'lib/');
2507 2506
 	}
2508 2507
 
2509 2508
 	if (!defined('_DIR_IMG')) {
@@ -2513,29 +2512,29 @@  discard block
 block discarded – undo
2513 2512
 		define('_DIR_LOGOS', $pa);
2514 2513
 	}
2515 2514
 	if (!defined('_DIR_IMG_ICONES')) {
2516
-		define('_DIR_IMG_ICONES', _DIR_LOGOS . 'icones/');
2515
+		define('_DIR_IMG_ICONES', _DIR_LOGOS.'icones/');
2517 2516
 	}
2518 2517
 
2519 2518
 	if (!defined('_DIR_DUMP')) {
2520
-		define('_DIR_DUMP', $ti . 'dump/');
2519
+		define('_DIR_DUMP', $ti.'dump/');
2521 2520
 	}
2522 2521
 	if (!defined('_DIR_SESSIONS')) {
2523
-		define('_DIR_SESSIONS', $ti . 'sessions/');
2522
+		define('_DIR_SESSIONS', $ti.'sessions/');
2524 2523
 	}
2525 2524
 	if (!defined('_DIR_TRANSFERT')) {
2526
-		define('_DIR_TRANSFERT', $ti . 'upload/');
2525
+		define('_DIR_TRANSFERT', $ti.'upload/');
2527 2526
 	}
2528 2527
 	if (!defined('_DIR_CACHE')) {
2529
-		define('_DIR_CACHE', $ti . 'cache/');
2528
+		define('_DIR_CACHE', $ti.'cache/');
2530 2529
 	}
2531 2530
 	if (!defined('_DIR_CACHE_XML')) {
2532
-		define('_DIR_CACHE_XML', _DIR_CACHE . 'xml/');
2531
+		define('_DIR_CACHE_XML', _DIR_CACHE.'xml/');
2533 2532
 	}
2534 2533
 	if (!defined('_DIR_SKELS')) {
2535
-		define('_DIR_SKELS', _DIR_CACHE . 'skel/');
2534
+		define('_DIR_SKELS', _DIR_CACHE.'skel/');
2536 2535
 	}
2537 2536
 	if (!defined('_DIR_AIDE')) {
2538
-		define('_DIR_AIDE', _DIR_CACHE . 'aide/');
2537
+		define('_DIR_AIDE', _DIR_CACHE.'aide/');
2539 2538
 	}
2540 2539
 	if (!defined('_DIR_TMP')) {
2541 2540
 		define('_DIR_TMP', $ti);
@@ -2564,27 +2563,27 @@  discard block
 block discarded – undo
2564 2563
 	// Declaration des fichiers
2565 2564
 
2566 2565
 	if (!defined('_CACHE_PLUGINS_PATH')) {
2567
-		define('_CACHE_PLUGINS_PATH', _DIR_CACHE . 'charger_plugins_chemins.php');
2566
+		define('_CACHE_PLUGINS_PATH', _DIR_CACHE.'charger_plugins_chemins.php');
2568 2567
 	}
2569 2568
 	if (!defined('_CACHE_PLUGINS_OPT')) {
2570
-		define('_CACHE_PLUGINS_OPT', _DIR_CACHE . 'charger_plugins_options.php');
2569
+		define('_CACHE_PLUGINS_OPT', _DIR_CACHE.'charger_plugins_options.php');
2571 2570
 	}
2572 2571
 	if (!defined('_CACHE_PLUGINS_FCT')) {
2573
-		define('_CACHE_PLUGINS_FCT', _DIR_CACHE . 'charger_plugins_fonctions.php');
2572
+		define('_CACHE_PLUGINS_FCT', _DIR_CACHE.'charger_plugins_fonctions.php');
2574 2573
 	}
2575 2574
 	if (!defined('_CACHE_PIPELINES')) {
2576
-		define('_CACHE_PIPELINES', _DIR_CACHE . 'charger_pipelines.php');
2575
+		define('_CACHE_PIPELINES', _DIR_CACHE.'charger_pipelines.php');
2577 2576
 	}
2578 2577
 	if (!defined('_CACHE_CHEMIN')) {
2579
-		define('_CACHE_CHEMIN', _DIR_CACHE . 'chemin.txt');
2578
+		define('_CACHE_CHEMIN', _DIR_CACHE.'chemin.txt');
2580 2579
 	}
2581 2580
 
2582 2581
 	# attention .php obligatoire pour ecrire_fichier_securise
2583 2582
 	if (!defined('_FILE_META')) {
2584
-		define('_FILE_META', $ti . 'meta_cache.php');
2583
+		define('_FILE_META', $ti.'meta_cache.php');
2585 2584
 	}
2586 2585
 	if (!defined('_DIR_LOG')) {
2587
-		define('_DIR_LOG', _DIR_TMP . 'log/');
2586
+		define('_DIR_LOG', _DIR_TMP.'log/');
2588 2587
 	}
2589 2588
 	if (!defined('_FILE_LOG')) {
2590 2589
 		define('_FILE_LOG', 'spip');
@@ -2601,8 +2600,8 @@  discard block
 block discarded – undo
2601 2600
 	if (!defined('_FILE_CONNECT')) {
2602 2601
 		define(
2603 2602
 			'_FILE_CONNECT',
2604
-			(@is_readable($f = _DIR_CONNECT . _FILE_CONNECT_INS . '.php') ? $f
2605
-			: (@is_readable($f = _DIR_RESTREINT . 'inc_connect.php') ? $f
2603
+			(@is_readable($f = _DIR_CONNECT._FILE_CONNECT_INS.'.php') ? $f
2604
+			: (@is_readable($f = _DIR_RESTREINT.'inc_connect.php') ? $f
2606 2605
 			: false))
2607 2606
 		);
2608 2607
 	}
@@ -2614,7 +2613,7 @@  discard block
 block discarded – undo
2614 2613
 	if (!defined('_FILE_CHMOD')) {
2615 2614
 		define(
2616 2615
 			'_FILE_CHMOD',
2617
-			(@is_readable($f = _DIR_CHMOD . _FILE_CHMOD_INS . '.php') ? $f
2616
+			(@is_readable($f = _DIR_CHMOD._FILE_CHMOD_INS.'.php') ? $f
2618 2617
 			: false)
2619 2618
 		);
2620 2619
 	}
@@ -2627,10 +2626,10 @@  discard block
 block discarded – undo
2627 2626
 		define('_FILE_TMP_SUFFIX', '.tmp.php');
2628 2627
 	}
2629 2628
 	if (!defined('_FILE_CONNECT_TMP')) {
2630
-		define('_FILE_CONNECT_TMP', _DIR_CONNECT . _FILE_CONNECT_INS . _FILE_TMP_SUFFIX);
2629
+		define('_FILE_CONNECT_TMP', _DIR_CONNECT._FILE_CONNECT_INS._FILE_TMP_SUFFIX);
2631 2630
 	}
2632 2631
 	if (!defined('_FILE_CHMOD_TMP')) {
2633
-		define('_FILE_CHMOD_TMP', _DIR_CHMOD . _FILE_CHMOD_INS . _FILE_TMP_SUFFIX);
2632
+		define('_FILE_CHMOD_TMP', _DIR_CHMOD._FILE_CHMOD_INS._FILE_TMP_SUFFIX);
2634 2633
 	}
2635 2634
 
2636 2635
 	// Definition des droits d'acces en ecriture
@@ -2648,13 +2647,13 @@  discard block
 block discarded – undo
2648 2647
 		define('_DEFAULT_CHARSET', 'utf-8');
2649 2648
 	}
2650 2649
 	if (!defined('_ROOT_PLUGINS')) {
2651
-		define('_ROOT_PLUGINS', _ROOT_RACINE . 'plugins/');
2650
+		define('_ROOT_PLUGINS', _ROOT_RACINE.'plugins/');
2652 2651
 	}
2653 2652
 	if (!defined('_ROOT_PLUGINS_DIST')) {
2654
-		define('_ROOT_PLUGINS_DIST', _ROOT_RACINE . 'plugins-dist/');
2653
+		define('_ROOT_PLUGINS_DIST', _ROOT_RACINE.'plugins-dist/');
2655 2654
 	}
2656 2655
 	if (!defined('_ROOT_PLUGINS_SUPPL') && defined('_DIR_PLUGINS_SUPPL') && _DIR_PLUGINS_SUPPL) {
2657
-		define('_ROOT_PLUGINS_SUPPL', _ROOT_RACINE . str_replace(_DIR_RACINE, '', _DIR_PLUGINS_SUPPL));
2656
+		define('_ROOT_PLUGINS_SUPPL', _ROOT_RACINE.str_replace(_DIR_RACINE, '', _DIR_PLUGINS_SUPPL));
2658 2657
 	}
2659 2658
 
2660 2659
 	// La taille des Log
@@ -2691,7 +2690,7 @@  discard block
 block discarded – undo
2691 2690
 	// (non surchargeable en l'etat ; attention si on utilise include_spip()
2692 2691
 	// pour le rendre surchargeable, on va provoquer un reecriture
2693 2692
 	// systematique du noyau ou une baisse de perfs => a etudier)
2694
-	include_once _ROOT_RESTREINT . 'inc/flock.php';
2693
+	include_once _ROOT_RESTREINT.'inc/flock.php';
2695 2694
 
2696 2695
 	// charger tout de suite le path et son cache
2697 2696
 	load_path_cache();
@@ -2739,7 +2738,7 @@  discard block
 block discarded – undo
2739 2738
 			!empty($_SERVER['QUERY_STRING'])
2740 2739
 			and !strpos($_SERVER['REQUEST_URI'], '?')
2741 2740
 		) {
2742
-			$GLOBALS['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING'];
2741
+			$GLOBALS['REQUEST_URI'] .= '?'.$_SERVER['QUERY_STRING'];
2743 2742
 		}
2744 2743
 	}
2745 2744
 
@@ -2775,7 +2774,7 @@  discard block
 block discarded – undo
2775 2774
 		) {
2776 2775
 			if (isset($GLOBALS['meta']['adresse_site'])) {
2777 2776
 				$uri_ref = parse_url($GLOBALS['meta']['adresse_site']);
2778
-				$uri_ref = ($uri_ref['path'] ?? '') . '/';
2777
+				$uri_ref = ($uri_ref['path'] ?? '').'/';
2779 2778
 			} else {
2780 2779
 				$uri_ref = '';
2781 2780
 			}
@@ -2869,7 +2868,7 @@  discard block
 block discarded – undo
2869 2868
 	}
2870 2869
 	if (!defined('_CACHE_RUBRIQUES')) {
2871 2870
 		/** Fichier cache pour le navigateur de rubrique du bandeau */
2872
-		define('_CACHE_RUBRIQUES', _DIR_TMP . 'menu-rubriques-cache.txt');
2871
+		define('_CACHE_RUBRIQUES', _DIR_TMP.'menu-rubriques-cache.txt');
2873 2872
 	}
2874 2873
 	if (!defined('_CACHE_RUBRIQUES_MAX')) {
2875 2874
 		/** Nombre maxi de rubriques enfants affichées pour chaque rubrique du navigateur de rubrique du bandeau */
@@ -3091,7 +3090,7 @@  discard block
 block discarded – undo
3091 3090
 					}
3092 3091
 					if (isset($GLOBALS['visiteur_session']['nom'])) {
3093 3092
 						spip_log($GLOBALS['visiteur_session']['nom']
3094
-							. ' ' . _VAR_MODE);
3093
+							. ' '._VAR_MODE);
3095 3094
 					}
3096 3095
 				} // pas autorise ?
3097 3096
 				else {
@@ -3106,7 +3105,7 @@  discard block
 block discarded – undo
3106 3105
 						if (strpos($self, 'page=login') === false) {
3107 3106
 							include_spip('inc/headers');
3108 3107
 							$redirect = parametre_url(self('&', true), 'var_mode', $_GET['var_mode'], '&');
3109
-							redirige_par_entete(generer_url_public('login', 'url=' . rawurlencode($redirect), true));
3108
+							redirige_par_entete(generer_url_public('login', 'url='.rawurlencode($redirect), true));
3110 3109
 						}
3111 3110
 					}
3112 3111
 					// sinon tant pis
@@ -3148,10 +3147,10 @@  discard block
 block discarded – undo
3148 3147
 	// mais on risque de perturber des plugins en initialisant trop tot
3149 3148
 	// certaines constantes
3150 3149
 	@spip_initialisation_core(
3151
-		(_DIR_RACINE . _NOM_PERMANENTS_INACCESSIBLES),
3152
-		(_DIR_RACINE . _NOM_PERMANENTS_ACCESSIBLES),
3153
-		(_DIR_RACINE . _NOM_TEMPORAIRES_INACCESSIBLES),
3154
-		(_DIR_RACINE . _NOM_TEMPORAIRES_ACCESSIBLES)
3150
+		(_DIR_RACINE._NOM_PERMANENTS_INACCESSIBLES),
3151
+		(_DIR_RACINE._NOM_PERMANENTS_ACCESSIBLES),
3152
+		(_DIR_RACINE._NOM_TEMPORAIRES_INACCESSIBLES),
3153
+		(_DIR_RACINE._NOM_TEMPORAIRES_ACCESSIBLES)
3155 3154
 	);
3156 3155
 
3157 3156
 	// Demarrer une session NON AUTHENTIFIEE si on donne son nom
@@ -3184,7 +3183,7 @@  discard block
 block discarded – undo
3184 3183
 	}
3185 3184
 
3186 3185
 	$h = (isset($_SERVER['PHP_AUTH_USER']) and !$GLOBALS['ignore_auth_http']);
3187
-	if ($h or isset($_COOKIE['spip_session']) or isset($_COOKIE[$GLOBALS['cookie_prefix'] . '_session'])) {
3186
+	if ($h or isset($_COOKIE['spip_session']) or isset($_COOKIE[$GLOBALS['cookie_prefix'].'_session'])) {
3188 3187
 		$session = charger_fonction('session', 'inc');
3189 3188
 		if ($session()) {
3190 3189
 			return $GLOBALS['visiteur_session']['statut'];
@@ -3264,7 +3263,7 @@  discard block
 block discarded – undo
3264 3263
 			'definir_session',
3265 3264
 			$GLOBALS['visiteur_session']
3266 3265
 				? serialize($GLOBALS['visiteur_session'])
3267
-				. '_' . @$_COOKIE['spip_session']
3266
+				. '_'.@$_COOKIE['spip_session']
3268 3267
 				: ''
3269 3268
 		);
3270 3269
 		$session = $s ? substr(md5($s), 0, 8) : '';
@@ -3420,11 +3419,11 @@  discard block
 block discarded – undo
3420 3419
 	$GLOBALS['_INC_PUBLIC']++;
3421 3420
 
3422 3421
 	// fix #4235
3423
-	$cache_utilise_session_appelant	= ($GLOBALS['cache_utilise_session'] ?? null);
3422
+	$cache_utilise_session_appelant = ($GLOBALS['cache_utilise_session'] ?? null);
3424 3423
 
3425 3424
 
3426 3425
 	foreach (is_array($fond) ? $fond : [$fond] as $f) {
3427
-		unset($GLOBALS['cache_utilise_session']);	// fix #4235
3426
+		unset($GLOBALS['cache_utilise_session']); // fix #4235
3428 3427
 
3429 3428
 		$page = evaluer_fond($f, $contexte, $connect);
3430 3429
 		if ($page === '') {
@@ -3509,7 +3508,7 @@  discard block
 block discarded – undo
3509 3508
  * @return array|string
3510 3509
  */
3511 3510
 function trouver_fond($nom, $dir = '', $pathinfo = false) {
3512
-	$f = find_in_path($nom . '.' . _EXTENSION_SQUELETTES, $dir ? rtrim($dir, '/') . '/' : '');
3511
+	$f = find_in_path($nom.'.'._EXTENSION_SQUELETTES, $dir ? rtrim($dir, '/').'/' : '');
3513 3512
 	if (!$pathinfo) {
3514 3513
 		return $f;
3515 3514
 	}
Please login to merge, or discard this patch.